sys.maxunicode
An integer giving the value of the largest Unicode code point, i.e. 1114111
(0x10FFFF
in hexadecimal).
Changed in version 3.3: Before PEP 393, sys.maxunicode
used to be either 0xFFFF
or 0x10FFFF
, depending on the configuration option that specified whether Unicode characters were stored as UCS-2 or UCS-4.
Please login to continue.