The function takes a string input and appends 'H' at the end of it.

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

Let me know if you need more tests or a different description.