I have a question in regards to finding if a unicode character is present in the font on the system.
>>> chr(9966)
'⛮'
>>> chr(9955)
'⛣'
>>> chr(9955) == chr(9966)
False
Basically, what I am trying to do, is to do a check where if the value is ⛣
. Is there any way in python to figure out if the value is ⛣
?
Edit: I now understand that unicode characters are not inherently defined or undefined. But, is there a way to check if a character exists in a certain font? I am on OS X.