Skip to content

Instantly share code, notes, and snippets.

@jinwoo-lee-github
Created February 23, 2013 18:44
Show Gist options
  • Save jinwoo-lee-github/5020831 to your computer and use it in GitHub Desktop.
Save jinwoo-lee-github/5020831 to your computer and use it in GitHub Desktop.
NSMutableString *aString = [NSMutableString string];
for (int i = 32; i < 55296; i++) {
if (!(i % 10)) [aString appendString:@"\n"];
[aString appendFormat:@"(%04X:%i)%C, ", i, i, i];
}
NSLog(aString);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment