ASC
Returns the ASCII code of a character.
Example
DEF char$=ASC("A")
PRINT char$
LINE BREAK
PRINT ASC("E")
LINE BREAK
LET char$="B"
PRINT ASC(char$)
Output
65
69
66
69
66
Put down that phone!
Please view me on real computer.
Returns the ASCII code of a character.
DEF char$=ASC("A")
PRINT char$
LINE BREAK
PRINT ASC("E")
LINE BREAK
LET char$="B"
PRINT ASC(char$)