I'd like to dump a simple Unicode string into an array of bytes, so I can refer to each as an int. Is this possible?
I'm looking to take a string u"Hello World" and convert it into UTF-8 and something that looks like this: `
[0x01, 0x02, ..., 0x02]
How can I do this efficiently?