Skip to content

Instantly share code, notes, and snippets.

@doskoi
Created September 24, 2010 08:51
Show Gist options
  • Save doskoi/595071 to your computer and use it in GitHub Desktop.
Save doskoi/595071 to your computer and use it in GitHub Desktop.
unicode enum
int i;
NSMutableString *string = [NSMutableString string];
for (i = 32; i < 55296; i++) {
if (!(i % 10)) [string appendString:@"\n"];
[string appendFormat:@"(%04X:%i)%C, ", i, i, i];
}
NSLog(@"%@", string);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment