Asc Function
SyntaxGroupAsc(S$)
StringDescription
Return the ASCII value.
Note: A similar function, AscW, returns the Unicode value. Another similar function, AscB, returns the first byte in S$.
See Also
Parameters Description S$ Return the ASCII value of the first char in this string value.
Chr$( )
Sub Main Debug.Print Asc("A") ' 65 End Sub