The function takes an input string and inserts the number '8' after the second character of the string.

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