18.04: color emoji not showing up at all in Chrome, only partially in Firefox
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
4
down vote
favorite
I've upgraded from 17.10 to 18.04 and was hoping to have better emoji support. The results are that Chrome (66) is still using the old black and white emoji font, and Firefox (59) is managing to show some color emoji but not others. I took some advice to install the font EmojiOne but that didn't seem to help ðÂÂÂ
Screenshots from the emoji demo page at http://eosrei.github.io/emojione-color-font/full-demo.html :
Chrome:
Firefox:
google-chrome 18.04 emoji
add a comment |Â
up vote
4
down vote
favorite
I've upgraded from 17.10 to 18.04 and was hoping to have better emoji support. The results are that Chrome (66) is still using the old black and white emoji font, and Firefox (59) is managing to show some color emoji but not others. I took some advice to install the font EmojiOne but that didn't seem to help ðÂÂÂ
Screenshots from the emoji demo page at http://eosrei.github.io/emojione-color-font/full-demo.html :
Chrome:
Firefox:
google-chrome 18.04 emoji
add a comment |Â
up vote
4
down vote
favorite
up vote
4
down vote
favorite
I've upgraded from 17.10 to 18.04 and was hoping to have better emoji support. The results are that Chrome (66) is still using the old black and white emoji font, and Firefox (59) is managing to show some color emoji but not others. I took some advice to install the font EmojiOne but that didn't seem to help ðÂÂÂ
Screenshots from the emoji demo page at http://eosrei.github.io/emojione-color-font/full-demo.html :
Chrome:
Firefox:
google-chrome 18.04 emoji
I've upgraded from 17.10 to 18.04 and was hoping to have better emoji support. The results are that Chrome (66) is still using the old black and white emoji font, and Firefox (59) is managing to show some color emoji but not others. I took some advice to install the font EmojiOne but that didn't seem to help ðÂÂÂ
Screenshots from the emoji demo page at http://eosrei.github.io/emojione-color-font/full-demo.html :
Chrome:
Firefox:
google-chrome 18.04 emoji
asked Apr 29 at 11:39
N3dst4
1807
1807
add a comment |Â
add a comment |Â
3 Answers
3
active
oldest
votes
up vote
2
down vote
accepted
On Ubuntu 18.04+ you can now simply install a single package: fonts-noto-color-emoji
. After that, restart Chrome and it will take effect. No need for creating a manual font configuration.
This package is supposed to be installed on the regular Ubuntu 18.04+ desktop flavor (on a 'Recommended' level of dependency - check for yourself with apt rdepends fonts-noto-color-emoji
). Some other flavors like Kubuntu (KDE) don't have this by default and require you to install it manually.
add a comment |Â
up vote
2
down vote
I fixed it - I had to follow these instructions from 2016 ð§ I had to create ~/.config/fontconfig/conf.d/01-emoji.conf
with the following text:
<?xml version="1.0" encoding="UTF-8"?>
<!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>
The bit in the original instructions about installing Noto font was unnecessary since it's installed as part of 18.04 by default.
Then run:
fc-cache -f -v
On the next restart, Chrome has color emoji.
-1, because of two reasons: 1) the local fontconfig isn't required any longer in 18.04. 2) "installing Noto font was unnecessary since it's installed as part of 18.04 by default" isn't universally true. I have a full KDE desktop installation and it wasn't installed at all. See also my answer.
â gertvdijk
Jul 25 at 15:00
Do you know if that's all true for upgradees too? I sensed that my problems might have had to do with being a 17.10 upgrade.
â N3dst4
Jul 25 at 15:08
add a comment |Â
up vote
0
down vote
Don't use that demo page to test color emoji. That page only demonstrates the EmojiOne font which isn't installed by default in Ubuntu (although Firefox uses a variation of it).
Instead use https://unicode.org/emoji/charts/full-emoji-list.html
Look at the Browser column. In default Ubuntu, it should mostly match the Google column. (Except for the Browser column, all the other columns are just .png
icons). When I tested today, the Google column is just a bit out of date as Google has made some changes to some of their emoji that haven't been incorporated into the website. (For instance, the hamburger has cheese on top of the burger.)
Fair enough, but this is not an answer to the original question - how to enable color emojis in Chrome.
â gertvdijk
Jul 25 at 14:58
@gertvdijk Color emoji does work in Google Chrome. What specific web site is causing you a problem?
â Jeremy Bicha
Jul 26 at 15:04
Ok, I see that you fixed your issue by installing fonts-noto-color-emoji. I tried to get every Ubuntu 18.04 LTS flavor to include that package by default, but the Lubuntu and Kubuntu developers didn't want it.
â Jeremy Bicha
Jul 26 at 15:05
@Jeremy_Bicha Yeah, on Kubuntu. But, my point was, your 'answer' is more of a comment to the other answer about the test page to use. It doesn't really answer the Q/OP.
â gertvdijk
Jul 26 at 21:23
add a comment |Â
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
On Ubuntu 18.04+ you can now simply install a single package: fonts-noto-color-emoji
. After that, restart Chrome and it will take effect. No need for creating a manual font configuration.
This package is supposed to be installed on the regular Ubuntu 18.04+ desktop flavor (on a 'Recommended' level of dependency - check for yourself with apt rdepends fonts-noto-color-emoji
). Some other flavors like Kubuntu (KDE) don't have this by default and require you to install it manually.
add a comment |Â
up vote
2
down vote
accepted
On Ubuntu 18.04+ you can now simply install a single package: fonts-noto-color-emoji
. After that, restart Chrome and it will take effect. No need for creating a manual font configuration.
This package is supposed to be installed on the regular Ubuntu 18.04+ desktop flavor (on a 'Recommended' level of dependency - check for yourself with apt rdepends fonts-noto-color-emoji
). Some other flavors like Kubuntu (KDE) don't have this by default and require you to install it manually.
add a comment |Â
up vote
2
down vote
accepted
up vote
2
down vote
accepted
On Ubuntu 18.04+ you can now simply install a single package: fonts-noto-color-emoji
. After that, restart Chrome and it will take effect. No need for creating a manual font configuration.
This package is supposed to be installed on the regular Ubuntu 18.04+ desktop flavor (on a 'Recommended' level of dependency - check for yourself with apt rdepends fonts-noto-color-emoji
). Some other flavors like Kubuntu (KDE) don't have this by default and require you to install it manually.
On Ubuntu 18.04+ you can now simply install a single package: fonts-noto-color-emoji
. After that, restart Chrome and it will take effect. No need for creating a manual font configuration.
This package is supposed to be installed on the regular Ubuntu 18.04+ desktop flavor (on a 'Recommended' level of dependency - check for yourself with apt rdepends fonts-noto-color-emoji
). Some other flavors like Kubuntu (KDE) don't have this by default and require you to install it manually.
edited Jul 26 at 21:25
answered Jul 25 at 14:54
gertvdijk
48.4k18135230
48.4k18135230
add a comment |Â
add a comment |Â
up vote
2
down vote
I fixed it - I had to follow these instructions from 2016 ð§ I had to create ~/.config/fontconfig/conf.d/01-emoji.conf
with the following text:
<?xml version="1.0" encoding="UTF-8"?>
<!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>
The bit in the original instructions about installing Noto font was unnecessary since it's installed as part of 18.04 by default.
Then run:
fc-cache -f -v
On the next restart, Chrome has color emoji.
-1, because of two reasons: 1) the local fontconfig isn't required any longer in 18.04. 2) "installing Noto font was unnecessary since it's installed as part of 18.04 by default" isn't universally true. I have a full KDE desktop installation and it wasn't installed at all. See also my answer.
â gertvdijk
Jul 25 at 15:00
Do you know if that's all true for upgradees too? I sensed that my problems might have had to do with being a 17.10 upgrade.
â N3dst4
Jul 25 at 15:08
add a comment |Â
up vote
2
down vote
I fixed it - I had to follow these instructions from 2016 ð§ I had to create ~/.config/fontconfig/conf.d/01-emoji.conf
with the following text:
<?xml version="1.0" encoding="UTF-8"?>
<!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>
The bit in the original instructions about installing Noto font was unnecessary since it's installed as part of 18.04 by default.
Then run:
fc-cache -f -v
On the next restart, Chrome has color emoji.
-1, because of two reasons: 1) the local fontconfig isn't required any longer in 18.04. 2) "installing Noto font was unnecessary since it's installed as part of 18.04 by default" isn't universally true. I have a full KDE desktop installation and it wasn't installed at all. See also my answer.
â gertvdijk
Jul 25 at 15:00
Do you know if that's all true for upgradees too? I sensed that my problems might have had to do with being a 17.10 upgrade.
â N3dst4
Jul 25 at 15:08
add a comment |Â
up vote
2
down vote
up vote
2
down vote
I fixed it - I had to follow these instructions from 2016 ð§ I had to create ~/.config/fontconfig/conf.d/01-emoji.conf
with the following text:
<?xml version="1.0" encoding="UTF-8"?>
<!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>
The bit in the original instructions about installing Noto font was unnecessary since it's installed as part of 18.04 by default.
Then run:
fc-cache -f -v
On the next restart, Chrome has color emoji.
I fixed it - I had to follow these instructions from 2016 ð§ I had to create ~/.config/fontconfig/conf.d/01-emoji.conf
with the following text:
<?xml version="1.0" encoding="UTF-8"?>
<!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>
The bit in the original instructions about installing Noto font was unnecessary since it's installed as part of 18.04 by default.
Then run:
fc-cache -f -v
On the next restart, Chrome has color emoji.
edited May 17 at 12:25
Treviño
1,48611120
1,48611120
answered Apr 29 at 12:09
N3dst4
1807
1807
-1, because of two reasons: 1) the local fontconfig isn't required any longer in 18.04. 2) "installing Noto font was unnecessary since it's installed as part of 18.04 by default" isn't universally true. I have a full KDE desktop installation and it wasn't installed at all. See also my answer.
â gertvdijk
Jul 25 at 15:00
Do you know if that's all true for upgradees too? I sensed that my problems might have had to do with being a 17.10 upgrade.
â N3dst4
Jul 25 at 15:08
add a comment |Â
-1, because of two reasons: 1) the local fontconfig isn't required any longer in 18.04. 2) "installing Noto font was unnecessary since it's installed as part of 18.04 by default" isn't universally true. I have a full KDE desktop installation and it wasn't installed at all. See also my answer.
â gertvdijk
Jul 25 at 15:00
Do you know if that's all true for upgradees too? I sensed that my problems might have had to do with being a 17.10 upgrade.
â N3dst4
Jul 25 at 15:08
-1, because of two reasons: 1) the local fontconfig isn't required any longer in 18.04. 2) "installing Noto font was unnecessary since it's installed as part of 18.04 by default" isn't universally true. I have a full KDE desktop installation and it wasn't installed at all. See also my answer.
â gertvdijk
Jul 25 at 15:00
-1, because of two reasons: 1) the local fontconfig isn't required any longer in 18.04. 2) "installing Noto font was unnecessary since it's installed as part of 18.04 by default" isn't universally true. I have a full KDE desktop installation and it wasn't installed at all. See also my answer.
â gertvdijk
Jul 25 at 15:00
Do you know if that's all true for upgradees too? I sensed that my problems might have had to do with being a 17.10 upgrade.
â N3dst4
Jul 25 at 15:08
Do you know if that's all true for upgradees too? I sensed that my problems might have had to do with being a 17.10 upgrade.
â N3dst4
Jul 25 at 15:08
add a comment |Â
up vote
0
down vote
Don't use that demo page to test color emoji. That page only demonstrates the EmojiOne font which isn't installed by default in Ubuntu (although Firefox uses a variation of it).
Instead use https://unicode.org/emoji/charts/full-emoji-list.html
Look at the Browser column. In default Ubuntu, it should mostly match the Google column. (Except for the Browser column, all the other columns are just .png
icons). When I tested today, the Google column is just a bit out of date as Google has made some changes to some of their emoji that haven't been incorporated into the website. (For instance, the hamburger has cheese on top of the burger.)
Fair enough, but this is not an answer to the original question - how to enable color emojis in Chrome.
â gertvdijk
Jul 25 at 14:58
@gertvdijk Color emoji does work in Google Chrome. What specific web site is causing you a problem?
â Jeremy Bicha
Jul 26 at 15:04
Ok, I see that you fixed your issue by installing fonts-noto-color-emoji. I tried to get every Ubuntu 18.04 LTS flavor to include that package by default, but the Lubuntu and Kubuntu developers didn't want it.
â Jeremy Bicha
Jul 26 at 15:05
@Jeremy_Bicha Yeah, on Kubuntu. But, my point was, your 'answer' is more of a comment to the other answer about the test page to use. It doesn't really answer the Q/OP.
â gertvdijk
Jul 26 at 21:23
add a comment |Â
up vote
0
down vote
Don't use that demo page to test color emoji. That page only demonstrates the EmojiOne font which isn't installed by default in Ubuntu (although Firefox uses a variation of it).
Instead use https://unicode.org/emoji/charts/full-emoji-list.html
Look at the Browser column. In default Ubuntu, it should mostly match the Google column. (Except for the Browser column, all the other columns are just .png
icons). When I tested today, the Google column is just a bit out of date as Google has made some changes to some of their emoji that haven't been incorporated into the website. (For instance, the hamburger has cheese on top of the burger.)
Fair enough, but this is not an answer to the original question - how to enable color emojis in Chrome.
â gertvdijk
Jul 25 at 14:58
@gertvdijk Color emoji does work in Google Chrome. What specific web site is causing you a problem?
â Jeremy Bicha
Jul 26 at 15:04
Ok, I see that you fixed your issue by installing fonts-noto-color-emoji. I tried to get every Ubuntu 18.04 LTS flavor to include that package by default, but the Lubuntu and Kubuntu developers didn't want it.
â Jeremy Bicha
Jul 26 at 15:05
@Jeremy_Bicha Yeah, on Kubuntu. But, my point was, your 'answer' is more of a comment to the other answer about the test page to use. It doesn't really answer the Q/OP.
â gertvdijk
Jul 26 at 21:23
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Don't use that demo page to test color emoji. That page only demonstrates the EmojiOne font which isn't installed by default in Ubuntu (although Firefox uses a variation of it).
Instead use https://unicode.org/emoji/charts/full-emoji-list.html
Look at the Browser column. In default Ubuntu, it should mostly match the Google column. (Except for the Browser column, all the other columns are just .png
icons). When I tested today, the Google column is just a bit out of date as Google has made some changes to some of their emoji that haven't been incorporated into the website. (For instance, the hamburger has cheese on top of the burger.)
Don't use that demo page to test color emoji. That page only demonstrates the EmojiOne font which isn't installed by default in Ubuntu (although Firefox uses a variation of it).
Instead use https://unicode.org/emoji/charts/full-emoji-list.html
Look at the Browser column. In default Ubuntu, it should mostly match the Google column. (Except for the Browser column, all the other columns are just .png
icons). When I tested today, the Google column is just a bit out of date as Google has made some changes to some of their emoji that haven't been incorporated into the website. (For instance, the hamburger has cheese on top of the burger.)
answered May 13 at 18:08
Jeremy Bicha
6,12542242
6,12542242
Fair enough, but this is not an answer to the original question - how to enable color emojis in Chrome.
â gertvdijk
Jul 25 at 14:58
@gertvdijk Color emoji does work in Google Chrome. What specific web site is causing you a problem?
â Jeremy Bicha
Jul 26 at 15:04
Ok, I see that you fixed your issue by installing fonts-noto-color-emoji. I tried to get every Ubuntu 18.04 LTS flavor to include that package by default, but the Lubuntu and Kubuntu developers didn't want it.
â Jeremy Bicha
Jul 26 at 15:05
@Jeremy_Bicha Yeah, on Kubuntu. But, my point was, your 'answer' is more of a comment to the other answer about the test page to use. It doesn't really answer the Q/OP.
â gertvdijk
Jul 26 at 21:23
add a comment |Â
Fair enough, but this is not an answer to the original question - how to enable color emojis in Chrome.
â gertvdijk
Jul 25 at 14:58
@gertvdijk Color emoji does work in Google Chrome. What specific web site is causing you a problem?
â Jeremy Bicha
Jul 26 at 15:04
Ok, I see that you fixed your issue by installing fonts-noto-color-emoji. I tried to get every Ubuntu 18.04 LTS flavor to include that package by default, but the Lubuntu and Kubuntu developers didn't want it.
â Jeremy Bicha
Jul 26 at 15:05
@Jeremy_Bicha Yeah, on Kubuntu. But, my point was, your 'answer' is more of a comment to the other answer about the test page to use. It doesn't really answer the Q/OP.
â gertvdijk
Jul 26 at 21:23
Fair enough, but this is not an answer to the original question - how to enable color emojis in Chrome.
â gertvdijk
Jul 25 at 14:58
Fair enough, but this is not an answer to the original question - how to enable color emojis in Chrome.
â gertvdijk
Jul 25 at 14:58
@gertvdijk Color emoji does work in Google Chrome. What specific web site is causing you a problem?
â Jeremy Bicha
Jul 26 at 15:04
@gertvdijk Color emoji does work in Google Chrome. What specific web site is causing you a problem?
â Jeremy Bicha
Jul 26 at 15:04
Ok, I see that you fixed your issue by installing fonts-noto-color-emoji. I tried to get every Ubuntu 18.04 LTS flavor to include that package by default, but the Lubuntu and Kubuntu developers didn't want it.
â Jeremy Bicha
Jul 26 at 15:05
Ok, I see that you fixed your issue by installing fonts-noto-color-emoji. I tried to get every Ubuntu 18.04 LTS flavor to include that package by default, but the Lubuntu and Kubuntu developers didn't want it.
â Jeremy Bicha
Jul 26 at 15:05
@Jeremy_Bicha Yeah, on Kubuntu. But, my point was, your 'answer' is more of a comment to the other answer about the test page to use. It doesn't really answer the Q/OP.
â gertvdijk
Jul 26 at 21:23
@Jeremy_Bicha Yeah, on Kubuntu. But, my point was, your 'answer' is more of a comment to the other answer about the test page to use. It doesn't really answer the Q/OP.
â gertvdijk
Jul 26 at 21:23
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1029661%2f18-04-color-emoji-not-showing-up-at-all-in-chrome-only-partially-in-firefox%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password