How to find out which font can display these characters?
问题 ⚫⚪ Unicode U+26AB Unicode U+26AA This two characters can be display in terminal, I want use convert (imagemagick command) to convert those text into picture. But convert only can use one special font , not fallback font could be used. convert -list font So how can I find which font could display those characters? 回答1: I adapted the code in this answer, to make a script to find which font contains a particular character as follows: #!/usr/bin/env python3 import os, sys import unicodedata from