Command Reference : String and Date Function Reference
  
 
@chr
ASCII value to string.
Syntax: @chr(arg)
arg: integer
Return: string
Returns the character string corresponding to the ASCII value arg.
Valid inputs are integer values running from 0 to 255. Any invalid value will return an empty string.
Examples
string s1 = @chr(67)
string s2 = @chr(99)
returns the strings S1=ā€œCā€ and S2=ā€œcā€.
Cross-references
See also @asc.