Lines Matching refs:unicodedata
369 import unicodedata
374 print(i, '%04x' % ord(c), unicodedata.category(c), end=" ")
375 print(unicodedata.name(c))
378 print(unicodedata.numeric(u[1]))
425 A second tool is the :mod:`unicodedata` module's
426 :func:`~unicodedata.normalize` function that converts strings to one
434 import unicodedata
438 return unicodedata.normalize('NFD', s)
457 The first argument to the :func:`~unicodedata.normalize` function is a
463 import unicodedata
467 return unicodedata.normalize('NFD', s)
526 The documentation for the :mod:`unicodedata` module.