ASCII value to string character.
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