Returns the ASCII code of a character.
Asc ( "char" )
Parameters
char | The character to get the code for. If a string is used, the code for the first character is given. |
Return Value
Returns the ASCII code of the specified char. If a number is passed instead of a char, the result is -1.
Remarks
See the Appendix for a complete ASCII table.
Related
Chr
Example
$code = Asc("A")
MsgBox(0, "ASCII code for A:", $code)