Welcome to the Power Users community on Codidact!
Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.
Post History
This post solved it for me. This issue is caused by having Noto Color Emoji too high in the font priority. Check /etc/fonts/local.conf for the following item: <match target="pattern"> <...
Answer
#2: Post edited
- [This post solved it for me.](https://bugzilla.mozilla.org/show_bug.cgi?id=1759667#c12) This issue is caused by having Noto Color Emoji too high in the font priority. Check `/etc/fonts/local.conf` for the following item:
- ```xml
- <match target="pattern">
- <edit name="family" mode="prepend">
<string>Noto Color Emoji</string>- </edit>
- </match>
- ```
It will likely be at the end. Maybe also check `/etc/fonts/fonts.conf` for it.- This loads Noto Color Emoji before every font. Since this font has [images for numbers](https://github.com/googlefonts/noto-emoji/blob/main/svg/emoji_u0030.svg) but not letters, it will replace numbers but let letters be the intended font.
- Delete those lines and restart Firefox and everything should go back to normal.
- [This post solved it for me.](https://bugzilla.mozilla.org/show_bug.cgi?id=1759667#c12) This issue is caused by having Noto Color Emoji too high in the font priority. Check `/etc/fonts/local.conf` for the following item:
- ```xml
- <match target="pattern">
- <edit name="family" mode="prepend">
- <string>Noto Color Emoji</string>
- </edit>
- </match>
- ```
- It will likely be at the end. If it's not there, check `/etc/fonts/fonts.conf` or `~/.config/fontconfig/fonts.conf` for it. [A list of possible locations is available on the man page.](https://manpages.debian.org/testing/fontconfig-config/fonts-conf.5.en.html)
- This loads Noto Color Emoji before every font. Since this font has [images for numbers](https://github.com/googlefonts/noto-emoji/blob/main/svg/emoji_u0030.svg) but not letters, it will replace numbers but let letters be the intended font.
- Delete those lines and restart Firefox and everything should go back to normal.
#1: Initial revision
[This post solved it for me.](https://bugzilla.mozilla.org/show_bug.cgi?id=1759667#c12) This issue is caused by having Noto Color Emoji too high in the font priority. Check `/etc/fonts/local.conf` for the following item: ```xml <match target="pattern"> <edit name="family" mode="prepend"> <string>Noto Color Emoji</string> </edit> </match> ``` It will likely be at the end. Maybe also check `/etc/fonts/fonts.conf` for it. This loads Noto Color Emoji before every font. Since this font has [images for numbers](https://github.com/googlefonts/noto-emoji/blob/main/svg/emoji_u0030.svg) but not letters, it will replace numbers but let letters be the intended font. Delete those lines and restart Firefox and everything should go back to normal.