chr

chr(i)

Returns the string representation for a Unicode character (built-in).

i??

REMARKS
* No prefix required - Core
* 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().
* The valid range for the argument is from 0 through 1,114,111 (0x10FFFF in base 16). ValueError will be raised if i is outside that range.
* You can use the ord statement to
* For the Official documentation refer to python.org

?? 

© 2026 Better Solutions Limited. All Rights Reserved. © 2026 Better Solutions Limited Top