I need to convert any integers as strings to unicode strings. For example:
"23"
to "/u2082/u2083"
Do you know a library doing this?
Thank you!
I need to convert any integers as strings to unicode strings. For example:
"23"
to "/u2082/u2083"
Do you know a library doing this?
Thank you!
All characters representing digits are already in the first 128 symbols of the ASCII table. And the first 128 ASCII symbols match the first 128 symbols of the Unicode encodings like UTF-8, 16 or 32.
You don't need to encode them.