chrVal()
Purpose
Returns the unicode character value of a given single character string.
Description
Takes a single text character and returns the official unicode standard value
Syntax
value = chrVal( string )
Arguments
value The returned unicode value
number The given text character
Example
// display each unicode value for the letters in FUZE
letters = [ "F", "U", "Z", "E" ]
for i = 0 to len( letters ) loop
print( chrVal( letters[i] ), " " )
repeat
update()
sleep( 3 )
Associated Commands