I'm trying to display the "treble clef" in a UILabel, but it doesn't work. However, NSLog is able to display it.
NSString *strM = @"\U0001d11e";
NSLog(@"treble clef works: %@",strM); //works
NSLog(@"works: "); //works
UILabel *lbl = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 50)];
[self.view addSubview:lbl];
lbl.text = strM; //shows "empty" or (box around a question mark)
What am I missing to display that Unicode character in a UILabel
?