I've got a character in my app
ウ
stored in my app in Unicode
a6 30
(That's listed as 30A6 in the Katakana Unicode PDF I found on the web) (I'll worry about endian issues later)
In a UTF-8 text file opened in a hex editor it's stored as the multi-byte sequence
E3 82 A6
(which corresponds to this UTF-8 encoding list I found)
Is there an API for converting unicode to UTF8?
I'm working on old Win32 / c code which does not compile with unicode support. I could hook into C++ for STL / Boost support if that helps?