Char
Summary
The Char function returns the character with the ASCII code value specified by the code integer.
Syntax
Char(<code_integer>) |
Return Type
String
Details
The ASCII code value must be between 0 and 255.
Examples
eval Char(97);'a'eval Char(65);'A' |
