(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"

Tell me about...

(ascii string)

LISP Compatibility

Programming Overview of LISP (LISt Processing) Language