Character codes: Difference between revisions

char codes in autohotkey
m (change include to be prelude)
(char codes in autohotkey)
Line 58:
PRINT CHR$(charCode) 'prints a
PRINT ASC(char) 'prints 97</lang>
 
=={{header|AutoHotkey}}==
<lang AutoHotkey>
Msgbox % chr(97)
Msgbox % Asc("a")
</lang>
 
=={{header|C}}==
Anonymous user