I am having trouble using a NSString with unicode characters like 'ç' and 'ñ'. An example as simple as this:
NSString *alphabet = @"abçd";
NSLog(@"alphabet is %@", alphabet);
outputs this on the console:
alphabet is abçd
How can I ensure that NSString is handling these unicode characters? I tried several different approaches by searching online and on the NSString class reference but none seem to work.
Thanks in advance.