![[ATLISP]](https://atlisp.cn/assets/layout/images/logo-white.png)
Syntax:
code-char code => char-p
Arguments and Values:
code---a character code.
Description:
Returns a character with the code attribute given by code. If no such character exists and one cannot be created, nil is returned.
Examples:
(code-char 65.) => #\A ;in an implementation using ASCII codes (code-char (char-code #\Space)) => #\Space ;in any implementation
Affected By:
The implementation's character encoding.
Exceptional Situations: None.
See Also:
Notes: