Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python get unicode spaces

from unicodedata import name, category
for char in ws:
    print(hex(ord(char)), repr(char), category(char), name(char, None))
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #unicode #spaces
ADD COMMENT
Topic
Name
2+5 =