Get Unicode Code Point of Character using Python July 31, 2021 Python 0 Comments 620 Views ord function character = '™' code = 'U+%04X' % ord(character) print(code) # U+2122
Leave a Comment
Cancel reply