Arbortext Command Language
>
Functions by Alphabetical Listing
>
chr
chr
chr
(
n
)
This function returns a string of one character corresponding to the ASCII character number or Unicode character number
n
. This is the inverse of
ord
. For example,
chr(65)
is
A
, and
chr(ord('X')) == 'X'
.
Related Topics
•
ord
built-in function