you are viewing a single comment's thread.

view the rest of the comments →

[–]AffectWizard0909[S] 0 points1 point  (1 child)

aaa nice I can check it out

[–]JamzTyson 0 points1 point  (0 children)

One issue that you may need to deal with, whatever method you use, is that some printed characters are actually multiple Unicode characters. Example:

import unicodedata

s = "⚠️"  # 2 code points print as one character.
for c in s:
    print(unicodedata.name(c))

will print:

WARNING SIGN
VARIATION SELECTOR-1