How do you convert unicode emoji stored as a string (e.g. 1f564
) to an emoji that could be placed on a UILabel?
let myString = "1f564"
I've seen the use of the escape character but I can't insert variables to replace the characters.
let flag = "\u{1f1e9}\u{1f1ea}"
Thanks