Hi,
How can I convert a 64-bit unicode string into a text string? I'm converting ASCII characters for example like this
str = unichr(int('00A9', 16))
But how can I convert unicode 'U2082' or any other character beyong the ASCII range?
Thank you.