Noto Color Emoji: missing characters?
Author: alopatindevCreated Apr 16, 2024Updated Sep 17, 2025
<head>
<style>
@font-face {
font-display: swap;
font-family: 'Noto Color Emoji';
font-style: normal;
font-weight: 400;
src: url('/tmp/noto-color-emoji-v30-emoji-regular.woff2') format('woff2');
}
body {
font-family: 'Noto Color Emoji';
}
</style>
</head>
<body>
️❤️⭐
</body>Shows nothing in ungoogled chromium 122.0.6261.111 with rm -f /tmp/noto-color-emoji-v30-emoji-regular.woff2 ; wget -qO - "https://gwfh.mranftl.com/api/fonts/noto-color-emoji?download=zip&subsets=emoji&variants=regular&formats=woff2" | bsdtar -xvf- -C /tmp
Works with rm -f /tmp/noto-color-emoji-v30-emoji-regular.woff2 ; wget -qO /tmp/noto-color-emoji-v30-emoji-regular.woff2 'https://fonts.gstatic.com/s/notocoloremoji/v30/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFabsE4tq3luCC7p-aXxcn.2.woff2' (source)
Source: majodev/google-webfonts-helper