Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find the list of 'autoreplaceable' iOS special characters?

Several special characters (⬇, for example) when being used in labels, etc are replaced with images automatically.

Where can I find the complete list of such replacements?

Thanks in advance

UPDATE: I know that I can simply copy-paste a lot of special characters to define what are the magic ones but I am interesting whether this magic is documented anywhere?


PROOF:

Source:

UILabel *lbl = [[[UILabel alloc] initWithFrame:CGRectMake(50, 200, 220, 25)] autorelease];
lbl.text = @"Did you see that? ⬇";
[self.view addSubview:lbl];

Result:

result

like image 630
knuku Avatar asked May 20 '11 16:05

knuku


1 Answers

As far as I can tell, the "image" is actually an emoji icon. The iphone uses softbanks emoji encoding ranges, so here is the list of those emoji icons and their respective codes.

Also see this question on how to put those charcodes into use.

like image 182
Eimantas Avatar answered Oct 10 '22 23:10

Eimantas