Where can I find the Unicode Emoticon set?

Noto Color Emoji from google.com/get/noto/#emoji-qaae-color is only usable in Android. On Windows, that font will not install (it is considered broken.invalid), because the Windows text renderers do not support colors in fonts. To display those colorful emojis, you'll need a plugin in your browser that will substitute SVG images (if the browser supports SVG), otherwise a scaled down bitmap (scaled bitmaps can be rescaled in HTML with simple CSS, on browsers that support zoom in CSS, or geometric transforms in the Canvas, so that the image will render at the expected font-size).

However I have no problem at all displaying all emojis listed in the Unicode charts on Wikipedia with my browser (Chrome on Windows 10).

But it's true that I have installed the FULL Noto font collection (except the Color Emojis font that Windows does not want), and even made it the default in my browser (because it has coherent metrics across all scripts) and supports almost all of them, many with various styles, and most of them are well hinted.

"Noto" is a fabulous collection of free fonts (with a free licence). Its development continues as Google wants it for Android in all languages of the world. Things are regularly updated to fix minor quirks. It is intended to cover all characters standardized in the Unicode/ISO 10646 repertoire.

"Robo" was an initial "fast" fallback collection created with less care but that provided missing characters for the huge ideographic scripts. But its design was not so careful. Progressively, characters are integrated to Noto and removed from the Robo collection. Also Robo exists in only one style (for other styles such as bold and italic, the text renderer of the browser will synthesize them, notably in Chrome, but italics may be too much slanted, and strokes may collide ungracefully in complex scripts with many strokes such as sinograms: there's no such problem with Noto that even provides 6 font-weights for CJK sinograms). So, use it only as a fallback for those that have old versions of Noto in CSS like as following: font-family:Noto,Robo,sans-serif;

That's all what is needed (you don't need more fonts, the last fallback to sans-serif allows getting access to some OS-specific fonts that would be present for implementing characters not found in Noto and not even in early versions of Robo when using early versions of Noto).

I really love Noto. Thanks to Google for making it fully open-sourced (and to all those that have contributed to extend it and fix quirks in complex scripts). It's definitely a huge improvement compared to what Microsoft did in the past (but only for Windows, and still with many mis-matching across world scripts).


sudo apt-get update
sudo apt-get install ttf-ancient-fonts

That fixed it for me on Ubuntu 14.04.