You are not logged in.

#1 Yesterday 06:12:23

atomikegg
Member
Registered: 2019-08-14
Posts: 116

Chrome Missing LinkedIn Fonts

Most other sites seem to render correctly. LinkedIn seems to default to Courier. Emoticons are incorrect -- "thumbs up" is a person's face.

I attempted to install additional fonts to arch, but that didn't help.

Chrome-Fonts.png

Offline

#2 Yesterday 07:32:14

seth
Member
Registered: 2012-09-03
Posts: 58,974

Re: Chrome Missing LinkedIn Fonts

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

#3 Today 08:26:04

atomikegg
Member
Registered: 2019-08-14
Posts: 116

Re: Chrome Missing LinkedIn Fonts

seth wrote:

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
seth wrote:

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

#4 Today 09:42:01

seth
Member
Registered: 2012-09-03
Posts: 58,974

Re: Chrome Missing LinkedIn Fonts

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

Board footer

Powered by FluxBB