I'm trying to convert "á" in UTF8. I can find that "á" in UTF8 is "á". In Xcode I've written this:
const char * litter = [@"á" UTF8String];
NSLog(@"%s",litter);
And it always prints "√°" and that is wrong! Indeed if a write
const char * litter = [@"áéíóú" UTF8String];
NSLog(@"%s",litter);
It prints: áéíóú
What am I doing wrong?
Thank you