[x] I have searched the issues of this repo and believe that this is not a duplicate
OS version and name: Ubuntu 19.04
Emojis characters are not rendering at all...they renders correctly in Gnome Terminal but not in Hyper, I am using ZSH and Spaceship Prompt.
Gnome Terminal:

Hyper:

I am using the same font on both Fira Code which obviously means it is not a font issue.
I have no clue why this is not working, no errors in DevTools.
:cry:
Can you try with a CI build of current canary or maybe compile one yourself? Or setting webGLRenderer: false, in the config.

I have done that even before opening this issue, check above .hyper.js file.
I have fixed the issue, it is also affecting any Chromium-based apps including Google Chrome. For others facing this issue, follow these steps:
vim ~/.config/fontconfig/conf.d/01-emoji.conf and paste below snippet:<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<alias>
<family>serif</family>
<prefer>
<family>Noto Color Emoji</family>
</prefer>
</alias>
<alias>
<family>sans-serif</family>
<prefer>
<family>Noto Color Emoji</family>
</prefer>
</alias>
<alias>
<family>monospace</family>
<prefer>
<family>Noto Color Emoji</family>
</prefer>
</alias>
</fontconfig>
Tested on Ubuntu, I don't know about other distros but it should work.
Most helpful comment
I have fixed the issue, it is also affecting any Chromium-based apps including Google Chrome. For others facing this issue, follow these steps:
vim ~/.config/fontconfig/conf.d/01-emoji.confand paste below snippet:Tested on Ubuntu, I don't know about other distros but it should work.