CHR()
Action

Convert a byte, Integer/Word variable or a constant to a character.

Syntax

PRINT CHR(var)

s = CHR(var)

Remarks

var Byte, Integer/Word variable or numeric constant.
s A string variable.
When you want to print a character to the screen or the LCD display,
you must convert it with the CHR() function.

See also
ASC()


Example


Dim a as byte
a = 65
LCD a
Lowerline
LCDHEX a
LCD Chr(a)
End