我有关于转换的问题。
print "\357\274\221\357\274\221" # 11 , no problem!
在python中,它有效!
NSLog(@"outCommand:%@", @"\357\274\221\357\274\221");// 1 , loses another letter!
NSLog(@"outCommand:%@", [@"\357\274\221\357\274\221" dataUsingEncoding:NSUTF8StringEncoding]);// <efbc91ef bc91>
如何在iOS的Objective-C或Swift中正确转换它?
最佳答案
尝试这个:
char buf[]="\357\274\221\357\274\221";
NSString *str = [NSString stringWithUTF8String:buf];
NSLog(@"%@", str);