Get Character by Unicode Code Point using Python August 6, 2021 Python 0 Comments 542 Views chr function code = 'U+2122' codeDec = int(code[2:], 16) character = chr(codeDec) print(character) # ™
Leave a Comment
Cancel reply