Chr()

Returns the character represented by the ascii value

Chr( number=number );

Returns: String

Argument Description
number
number, required

A value (a number in the range 0 - 65535, inclusive)

Examples

dump(chr(100)); // d
dump(chr(123)); // {
dump(chr(9)); // tab character

See also