
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 …
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 …
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 …
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 …
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 …
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, …
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 …
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 …
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 …
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 …