I want to convert a number of unicode codepoints read from a file to their UTF8 encoding.
e.g I want to convert the string 'FD9B'
to the string 'EFB69B'
.
I can do this manually using string literals like this:
u'\uFD9B'.encode('utf-8')
but I cannot work out how to do it programatically.