I have a UILabel in which I want to display a Unicode character. The following works:
UILabel
label.text = @\"\\U000025A0\";
Now I want to
try this ::
NSString *myString = [NSString stringWithUTF8String:"0xF09F948A"]; <-- UTF-8 Hexadecimal Encoding myLabel.text = myString;