The function f(x) converts a string input into a list of ASCII values of each character in the string.

To approximate the behavior of the function, we can write the following Python code:
[CODE]:
def f(x):
    output = []
    for char in x:
        output.append(ord(char))
    return output