The function implemented by f(x) removes the first character of a given string.

[CODE]:
```python
def f(x):
    return x[1:]
```
This code removes the first character of the input string `x` and returns the modified string.