Determines the ASCII value of a character.
asc(string) → returns numeric
asc(string)
→ returns numeric
x = chr( 8361 ); writeoutput( 'character: #x#' ); x = asc( x ); writeoutput( '<br>Unicode value: #x#');