This command returns the character that corresponds to the ASCII code you specify.
Syntax
CHR number
Valid options for number are 0 - 255.
Return value
This command returns a string.
Notes
For a complete list of ASCII codes, see ASCII Chart.
Example
CHR 82
ASCII Code 82 is the letter "R", so this formula returns the string "R".
CHR 114
ASCII Code 114 is the letter "r", so this formula returns the string "r".
CONCAT CHR 13, CHR 10
ASCII Code 13 is the "Carriage Return" character and ASCII Code 10 is the "Line Feed" character, so this formula returns a Carriage Return followed by a Line Feed.