I have a NSArray containing NSStrings with emoji codes in the following format:
0x1F463
How can I now convert them into a NSString with the correct format?
With this method I am able to generate an "Emoji"-NSString:
NSString *emoji = [NSString stringWithFormat:@"\U0001F463"];
But this is only possible with constant NSStrings. How can I convert the whole NSArray?