How do I find out which font contains a certain special character?

21

3

Unicode contains a few special "characters" which are not displayable by most fonts. I want to use one of them, a video camera.

It seems that such a character exists indeed, and has the codepoint U+1F4F9. When I visit http://graphemica.com/%F0%9F%93%B9, I see it displayed both on the webpage and in Firefox's URL bar. So I assume that I have at least one font on my system which contains the glyph.

url with video camera glyph displays correctly

But when I paste it into Inkscape, I get the empty box for an unknown character, even if I choose a font which usually has many glyphs, like Arial.

How do I find out which of the fonts I have installed can display the "character"?

Rumi P.

Posted 2015-02-11T12:28:13.640

Reputation: 411

If the font is not recognized (giving you the empty box), it is likely you don't have the font installed on your system. Therefore, you need to install it before it can be used. – CharlieRB – 2015-02-11T12:43:49.997

@CharlieRB the font is installed. I cannot choose to use a font in Inkscape which is not installed. It just doesn't have this very rare glyph. – Rumi P. – 2015-02-11T13:58:55.397

OK. You may want to clarify that in your question; that you have the font installed. – CharlieRB – 2015-02-11T15:13:11.977

1Firefox may use its own font in Windows 7 and prior versions because there's no font for emoji in those systems. The font is in <firefox>\fonts\EmojiOneMozilla.ttf and not installed globally – phuclv – 2017-10-14T04:58:29.640

There is a similar question which has been answered here.

– jdhao – 2018-04-08T15:53:40.523

Answers

14

Try this page: www.Fileformat.info

http://www.fileformat.info/info/unicode/char/1f4f9/fontsupport.htm

There you can query Unicode characters and get a list of supporting fonts.

Wernfried Domscheit

Posted 2015-02-11T12:28:13.640

Reputation: 507

1And it looks like that page can search fonts on your computer too, with a Flash plugin. – yellowantphil – 2015-02-16T16:22:30.750

Thankyou for the answer, Ive been searching for a solution to my "Half OTF half TTF" support error for VS forever now. – TaylorS – 2019-07-28T07:15:22.793

4

I completely understand the question as I ran into the same problem myself:

You know your computer has the font installed because one program displays the content properly, but another program displays the same content as a blank box because it doesn't know what font to use to display properly. And you don't want to scroll through all the fonts to find one that contains the character you want.

Try pasting the copied text/symbol into a blank Microsoft Word doc. The content should appear properly if Word is set to Keep Source Formatting by default for pasted text. If so, select the content and the Word font menu will show you the source font on your computer that contains the necessary character. Granted, there may be others, but at least this is a quick and dirty way to find one font that may be suitable.

Owen

Posted 2015-02-11T12:28:13.640

Reputation: 41

In Linux, the same can be accomplished with Writer. – Arthur Zennig – 2018-07-18T12:01:53.010

4

The following Python script would print all fonts containing a character (tested on my Linux box).

import unicodedata
import os

fonts = []

for root,dirs,files in os.walk("/usr/share/fonts/"):
    for file in files:
       if file.endswith(".ttf"): fonts.append(os.path.join(root,file))


from fontTools.ttLib import TTFont

def char_in_font(unicode_char, font):
    for cmap in font['cmap'].tables:
        if cmap.isUnicode():
            if ord(unicode_char) in cmap.cmap:
                return True
    return False

def test(char):
    for fontpath in fonts:
        font = TTFont(fontpath)   # specify the path to the font in question
        if char_in_font(char, font):
            print(char + " "+ unicodedata.name(char) + " in " + fontpath) 

test(u"")
test(u"")

On my machine, this gives:

 SMILING CAT FACE WITH OPEN MOUTH  in /usr/share/fonts/truetype/ttf-dejavu/DejaVuSansCondensed.ttf
 SMILING CAT FACE WITH OPEN MOUTH  in /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Bold.ttf
 SMILING CAT FACE WITH OPEN MOUTH  in /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf
 SMILING CAT FACE WITH OPEN MOUTH  in /usr/share/fonts/truetype/ttf-dejavu/DejaVuSansCondensed-Bold.ttf
 SMILING CAT FACE WITH OPEN MOUTH  in /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Oblique.ttf
 SMILING CAT FACE WITH OPEN MOUTH  in /usr/share/fonts/truetype/ttf-dejavu/DejaVuSansCondensed-Oblique.ttf
 SMILING CAT FACE WITH OPEN MOUTH  in /usr/share/fonts/truetype/ttf-dejavu/DejaVuSansCondensed-BoldOblique.ttf
 SMILING CAT FACE WITH OPEN MOUTH  in /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-BoldOblique.ttf
 SMILING CAT FACE WITH OPEN MOUTH  in /usr/share/fonts/truetype/dejavu/DejaVuSansCondensed.ttf
 SMILING CAT FACE WITH OPEN MOUTH  in /usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf
 SMILING CAT FACE WITH OPEN MOUTH  in /usr/share/fonts/truetype/dejavu/DejaVuSans.ttf
 SMILING CAT FACE WITH OPEN MOUTH  in /usr/share/fonts/truetype/dejavu/DejaVuSansCondensed-Bold.ttf
 SMILING CAT FACE WITH OPEN MOUTH  in /usr/share/fonts/truetype/dejavu/DejaVuSans-Oblique.ttf
 SMILING CAT FACE WITH OPEN MOUTH  in /usr/share/fonts/truetype/dejavu/DejaVuSansCondensed-Oblique.ttf
 SMILING CAT FACE WITH OPEN MOUTH  in /usr/share/fonts/truetype/dejavu/DejaVuSansCondensed-BoldOblique.ttf
 SMILING CAT FACE WITH OPEN MOUTH  in /usr/share/fonts/truetype/dejavu/DejaVuSans-BoldOblique.ttf
 CAT  in /usr/share/fonts/truetype/noto/NotoSansSymbols2-Regular.ttf

Martin Monperrus

Posted 2015-02-11T12:28:13.640

Reputation: 1 305