Chr$ (integer)  

Definition:

Converts an ASCII code to its corresponding character string.

Parameter Description:


integer = valid ASCII code integer value

Command Description:

Use this command to convert a known ASCII code (for example 65) to its character string equivelant (i.e. the letter "A").

Example:

Print " The character for ASCII value 65 is: " + Chr$(65)

Index