Skip to content

Instantly share code, notes, and snippets.

@looping
Created November 5, 2014 10:16
Show Gist options
  • Save looping/21fb5827acc6ae205171 to your computer and use it in GitHub Desktop.
Save looping/21fb5827acc6ae205171 to your computer and use it in GitHub Desktop.
NSString to Unicode
- (NSString *)unicodeString:(NSString *)string {
NSMutableString *retString = [NSMutableString stringWithCapacity:0];
for (int index = 0; index < [string length]; index++) {
[retString appendFormat:@"\\u%04x",[string characterAtIndex:index]];
}
return retString;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment