https://unicode-org.github.io/icu/userguide/conversion/converters.html#converter-life-cycle
https://unicode-org.github.io/icu/userguide/conversion/converters.html#creating-a-converter
You can create a converter 4 different ways, but the first two seem to be the best option for us:
The list of available names can be found here.
https://unicode-org.github.io/icu/userguide/conversion/converters.html#modes-of-conversion
The appropriate conversion methods are ucnv_fromUChars
and ucnv_toUChars
.
Converting From UTF
Converting to UTF
To close the converter, you can do:
After reading through the docs, I believe we must first convert the Ascii data to UTF-16 first, then convert it to UTF-8.
Since ICU uses Unicode (UTF-16) internally, all converters convert between UTF-16 (with the endianness according to the current platform) and another encoding.
Also,
In order to use the collation, text boundary analysis, formatting or other ICU APIs, you must use Unicode strings. In order to get Unicode strings from your native > codepage, you can use the conversion API.
This might be the solution:
https://github.com/unicode-org/icu/blob/master/icu4c/source/samples/ucnv/convsamp.cpp
© 2025 by Ryan Rickgauer