The function always returns the character 'C', regardless of the input string.

[CODE]:
```python
def f(x):
    return 'C'
```