I want to transfer unicode into asci characters, transfer them through a channel that only accepts asci characters and then transform them back into proper unicode.
I'm dealing with the unicode characters like ɑ
in Python 3.5.
ord("ɑ")
gives me 63 with is the same as what ord("?")
also gives me 63. This means simply using ord()
and chr()
doesn't work. How do I get the right conversion?