You are here : python_3Built-in Functionschr

chr() - Built-in Functions

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

chr(i)


Example


Output / Return Value


Limitations


Alternatives / See Also


Reference