Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS 8.3 Mobile Safari disable emoji rendering

Apple released iOS 8.3 recently. They added a lot more Emojis and all of them are rendered in mobile safari now. For Example ▶ will be rendered to an emoji icon. is there a way to disable emoji rendering? For example via CSS or JavaScript?

like image 917
Dev0r Avatar asked Apr 10 '15 17:04

Dev0r


People also ask

How do I block Emojis?

Select the virtual keyboard you're using (like Gboard, and not “Google voice typing”) and then Preferences. (There's a shortcut to this location, too: With virtual keyboard displayed, tap and hold on the comma [,] key until you see a small Settings gear appear.) Now, disable the option “Show emoji switch key.”


1 Answers

Yes you can disable these on a character by character basis by using the proper variant glyph.

The following example will render the black right pointing triangle as emoji as no variant is specified.

▶

However, if you specify the proper variant glyph you'll get the text.

▶︎

Generally speaking, ︎ gets you the text version and ️ or not otherwise specified gets you the emoji version.

See http://anthonyticknor.com/demos/emoji/ for an example in practice for the left arrow and the black heavy heart. I picked up most of what I did there from http://mts.io/2015/04/21/unicode-symbol-render-text-emoji/

like image 80
Anthony Ticknor Avatar answered Oct 07 '22 22:10

Anthony Ticknor