You are not logged in.
Pages: 1
First and foremost, please provide the concerned codepoint:
printf <paste the glyph here> | iconv -futf8 -tutf16 | od -x | head -1 | cut -d" " -f3
# eg
printf λ | iconv -futf8 -tutf16 | od -x | head -1 | cut -d" " -f3 # I'm using λ as example because the bbs will swallow most extended utf8
It should™ be 1F44D
Then check what provides that glyph
fc-list :charset=03bb # replace the codepoint 03bb w/ the actual one
Offline
First and foremost, please provide the concerned codepoint:
printf <paste the glyph here> | iconv -futf8 -tutf16 | od -x | head -1 | cut -d" " -f3
It should™ be 1F44D
$ printf ? | iconv -futf8 -tutf16 | od -x | head -1 | cut -d" " -f3
d83d
Then check what provides that glyph
fc-list :charset=03bb # replace the codepoint 03bb w/ the actual one
This returns nothing
$ fc-list :charset=d83d
Offline
That's not a valid codepoint, https://www.fileformat.info/info/unicod … /index.htm
Let's strip the convenience part:
printf <paste the glyph here> | iconv -futf8 -tutf16 | od -x
Offline
Pages: 1