ID EN
Built-in Functions

chr

Python 3.11

Return the string representing a character whose Unicode code point is the integer i. For example, chr(97) returns the string 'a', while chr(8364) returns the string '€'. This is the inverse of ord().

Syntax

PYTHON
chr(i)

See Also

ord() ValueError