def reverse(text):
    output = ''
    for codepoint in text:
        output = codepoint + output
    return output
