(chr integer)
Convert this integer to ASCII.
The chr function converts an ASCII code into the corresponding character. The ASCII code is an integer.
Examples
Code | Returns |
---|---|
(chr 88) | "X" |
(chr 120) | "x" |
(chr 0) | "" |
(chr 2) | "/002" |
Convert this integer to ASCII.
The chr function converts an ASCII code into the corresponding character. The ASCII code is an integer.
Examples
Code | Returns |
---|---|
(chr 88) | "X" |
(chr 120) | "x" |
(chr 0) | "" |
(chr 2) | "/002" |