ACHAR function
Description
Character function. ACHAR(x) returns the ANSI character with code x. The result is a string value of length 1 (if x>0). The argument x must be less then 256.
Note that the term ANSI in this context actually refers to Windows code page 1252.
Example
ACHAR(65) returns the string "A"
ACHAR(137) returns the string "‰"
ACHAR(926) returns an error
Calculator