ORD

ORD

This function returns the ASCII value of the first character of string A$.
Format
ORD(A$)
Parameters
A$
= Input string: only the first character will be used.
Returns
The ASCII value of the first character.
Example
This is an example of how to use the ORD(A$)command:
10 LET A$="ABC" 20 PRINT ORD(A$) RUN 65
Comments
None