CHAR
Syntax CHAR number
 
Explanation

CHAR reports the character whose ASCII code is the input. The input number can be from 0 through 255.

To output the ASCII code corresponding to an input character, use ASCII.
 

Examples CHAR 65 
Result: A 
CHAR 47 
Result: / 
CHAR 49 
Result: 1 
CHAR 97 
Result: a 

TopIndex