Este no es necesariamente el mejor método, y seguro que no es fácil de usar, pero es fácil trabajar: aquí hay un script de Python para hacerlo.
Instale la biblioteca Python-fontconfig . Puede obtenerlo de su distribución (por ejemplo, sudo apt-get install python-fontconfig
en Debian y derivados) o instalarlo en su directorio de inicio ( pip install --user python-fontconfig)
. Luego puede ejecutar este script (guárdelo como fc-search-codepoint
en un directorio en su PATH
, por ejemplo ~/bin
, normalmente , y hacerlo ejecutable):
#!/usr/bin/env python2
import re, sys
import fontconfig
if len(sys.argv) < 1:
print('''Usage: ''' + sys.argv[0] + '''CHARS [REGEX]
Print the names of available fonts containing the code point(s) CHARS.
If CHARS contains multiple characters, they must all be present.
Alternatively you can use U+xxxx to search for a single character with
code point xxxx (hexadecimal digits).
If REGEX is specified, the font name must match this regular expression.''')
sys.exit(0)
characters = sys.argv[1]
if characters.startswith('U+'):
characters = unichr(int(characters[2:], 16))
else:
characters = characters.decode(sys.stdout.encoding)
regexp = re.compile(sys.argv[2] if len(sys.argv) > 2 else '')
font_names = fontconfig.query()
found = False
for name in font_names:
if not re.search(regexp, name): continue
font = fontconfig.FcFont(name)
if all(font.has_char(c) for c in characters):
print(name)
found = True
sys.exit(0 if found else 1)
Ejemplo de uso:
$ fc-search-codepoint 🉃⼼😻🕲🝤
$ echo $?
1
No tengo ninguna fuente con todos estos caracteres.
$ fc-search-codepoint U+1F64D
/usr/share/fonts/truetype/unifont/unifont_upper.ttf
/usr/share/fonts/truetype/unifont/unifont_upper_csur.ttf