Returns a single character which corresponds to the specified character code.
CHR$ (code)
└─┬┘
Numeric expression
CHR$(65)
code: Numeric expression truncated to an integer in the range of 0 ≦ code < 256
Variables can also be used as a parameter, and decimal parts of numeric
values are truncated. A null
is returned when a character does not
exist for the specified character code.
10 FOR I=65 TO 90
20 PRINT CHR$(I)
30 NEXT I
Displays characters from 65 through 90 in character code.