ASCII
Syntax ASCII character
 
Explanation ASCII reports the American Standard Code for Information Interchange (ASCII) value of its input. If its input is a word, ASCII reports the ASCII value of the first character in the word. ASCII reports an integer between 0 and 255. The input must contain at least one character. The character can be a letter, number or special character.

To output the character corresponding to an ASCII code input, use CHAR.

The American Standard Code for Information Interchange (ASCII) is a standard code for representing numbers, letters and symbols.

An ASCII file is a text file where the characters are represented in ASCII codes. Logo saves its workspace files as text or ASCII files.
 

Examples ASCII "A 
Result: 65 
ASCII "1 
Result: 49 
ASCII "|a| 
Result: 97 
ASCII `b` 
Result: 98 
ASCII "/ 
Result: 47 

TopIndex