The function takes a string as input and returns the reversed version of the input string with original capitalization and special characters intact.

[CODE]: 
```python
def f(x):
    return x[::-1]
```