majodev / google-webfonts-helper

A Hassle-Free Way to Self-Host Google Fonts. Get eot, ttf, svg, woff and woff2 files + CSS snippets

Home Page:https://gwfh.mranftl.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Noto Color Emoji: missing characters?

alopatindev opened this issue ยท comments

<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)

@alopatindev With the goal of isolating the bug, I have a question for you: have you tried the above in a different browser?