About 50 results
Open links in new tab
  1. Unicode HOWTO — Python 3.13.3 documentation

    2 days ago · Unicode (https://www.unicode.org/) is a specification that aims to list every character used by human languages and give each character its own unique code. The Unicode …

  2. Unicode Objects and Codecs — Python 3.13.3 documentation

    3 days ago · These are the basic Unicode object types used for the Unicode implementation in Python: type Py_UCS4 ¶ type Py_UCS2 ¶ type Py_UCS1 ¶ Part of the Stable ABI. These …

  3. unicodedata — Unicode Database — Python 3.13.3 documentation

    2 days ago · This module provides access to the Unicode Character Database (UCD) which defines character properties for all Unicode characters. The data contained in this database is …

  4. email.charset : Representing character sets - Python

    4 days ago · This module provides a class Charset for representing character sets and character set conversions in email messages, as well as a character set registry and several …

  5. re — Regular expression operations — Python 3.13.3 documentation

    3 days ago · UNICODE ¶ In Python 3, Unicode characters are matched by default for str patterns. This flag is therefore redundant with no effect and is only kept for backward compatibility. See …

  6. Guide Unicode — Documentation Python 2.7.18

    In Python source code, Unicode literals are written as strings prefixed with the “u” or “U” character: u'abcdefghijk'. Specific code points can be written using the \u escape sequence, …

  7. codecs — Codec registry and base classes - Python

    3 days ago · The set of characters that appear in the braces is the Name property from Unicode Character Database. For example, the German lowercase letter 'ß' will be converted to byte …

  8. string — Common string operations — Python 3.13.3 …

    5 days ago · Character. Converts the integer to the corresponding unicode character before printing. 'd' Decimal Integer. Outputs the number in base 10. 'o' Octal format. Outputs the …

  9. Regular Expression HOWTO — Python 3.13.3 documentation

    2 days ago · In general, the Unicode versions match any character that’s in the appropriate category in the Unicode database. \d Matches any decimal digit; this is equivalent to the class …

  10. curses — Terminal handling for character-cell displays — Python …

    3 days ago · The following table lists characters from the alternate character set. These are inherited from the VT100 terminal, and will generally be available on software emulations such …

Refresh