• Home
  • Raw
  • Download

Lines Matching full:unicode

2 :mod:`unicodedata` --- Unicode Database
6 :synopsis: Access the Unicode Database.
13 single: Unicode
15 pair: Unicode; database
17 This module provides access to the Unicode Character Database which defines
18 character properties for all Unicode characters. The data in this database is
20 available from ftp://ftp.unicode.org/.
23 Format 5.2.0 (see http://www.unicode.org/reports/tr44/tr44-4.html).
30 the corresponding Unicode character. If not found, :exc:`KeyError` is raised.
35 Returns the name assigned to the Unicode character *unichr* as a string. If no
42 Returns the decimal value assigned to the Unicode character *unichr* as integer.
49 Returns the digit value assigned to the Unicode character *unichr* as integer.
56 Returns the numeric value assigned to the Unicode character *unichr* as float.
63 Returns the general category assigned to the Unicode character *unichr* as
69 Returns the bidirectional class assigned to the Unicode character *unichr* as
75 Returns the canonical combining class assigned to the Unicode character *unichr*
81 Returns the east asian width assigned to the Unicode character *unichr* as
89 Returns the mirrored property assigned to the Unicode character *unichr* as
96 Returns the character decomposition mapping assigned to the Unicode character
103 Return the normal form *form* for the Unicode string *unistr*. Valid values for
106 The Unicode standard defines various normalization forms of a Unicode string,
108 In Unicode, several characters can be expressed in various way. For example, the
118 compatibility equivalence. In Unicode, certain characters are supported which
121 However, it is supported in Unicode for compatibility with existing character
129 Even if two unicode strings are normalized and look the same to
140 The version of the Unicode database used in this module.
148 Unicode database version 3.2 instead, for applications that require this
149 specific version of the Unicode database (such as IDNA).