I'm reading a binary file, with some text fields inside of it.
The original field value is "asdf è" (i cannot change the binary file encoding)
The UTF-8 encoding would be "asdf \xc3\xa8"
What i'm reading is instead "asdf \xc3\x83\xc2\xa8" so the NSString stringWithUTF8String: or initWithCString method gives to me "asdf è"
How to get back the right "asdf è" value?
thanks