chr$()

Returns a 1 character string with ASCII code character number. You can omit the dollar character so you can alternatively write it as chr() .


Syntax:
string = chr$( number )
string = chr( number )

Example:
' s = "A"
s = chr$( 65 )

See also asc() command.