Are Unicode bytes longer than ISO bytes?
If yes, I am trying to convert Objective-C NSString
to const Char UTF8
using [NSString UTF8String]
. I am having an issue with Special char bytes
. How can I solve this issue?
I am using an API for TTS(Text to speech and highlighting). API developer told me that Text highlighting is calculating on the base of bytes and this is only happening with some Special Characters. So i need to change the string from ISO to Unicode.
Thank you!