标签: ios character-encoding
这是一段非常简短的代码
NSString *s = @"Aès"; NSLog(@" For %@ the character at Index 1 is: %d (%c)",s, [s characterAtIndex: 1],[s characterAtIndex: 1]);
有人可以向我解释为什么我得到的输出是:
对于Aès,索引1处的字符为:232(Ë)
由于
菲尔