@ASCII[string] :  Returns the space separated list of ASCII values  of the characters in string. You can use the Escape character before a special character, e.g., a quote or greater than (>) sign, to include it in string.

 

Note: The @UNICODE function will generally return more useful values.

 

Examples:

 

function

value

%@ascii[a]

97

%@ascii[A]

65

%@ascii[^`]

96

%@ascii[abc]

97 98 99

 

See also: ASCII, Key Codes and Key Names.