chr

Synopsis

$ chr(n)

Returns a string containing the character that corresponds to the integer argument.

Parameters

n - the ascii integer value

Returns

A scalar string.

Examples

for ($x = 65; $x < 91; $x++) { print(chr($x)); } println();

ABCDEFGHIJKLMNOPQRSTUVWXYZ

See Also