ascii (char: STRING): INTEGER
Returns the ascii-code value of the first character of the string.
string functions
script ascii_converter is i := ascii ('a') -- i = 97 i := ascii ('aa') -- i = 97 i := ascii ('A') -- i = 65 end