Returns the ASCII number of the first character of the string argument. The ASCII representation is the Unicode value of this character.
Asc( X ) AscW( X )
X | String from the the Unicode value of the first character will be returned. |
---|
String
asc("Report") // Returns 82 (the unicode value of 'R') asc("automatic") // Returns 97 (the unicode value of 'a')