Determines the ASCII value of a character.
ascii(string)
returns numeric
Name | Type | Required | Default | Description |
---|---|---|---|---|
string | string | Yes |
x = chr( 8361 );
writeoutput( 'character: #x#' );
x = asc( x );
writeoutput( '<br>Unicode value: #x#');