| int | input [int] 
 | The ASCII value of each of the digits of the number is sent out the outlet, one digit at a time. | 
| list | input [list] 
 | Each int in the list is converted to ASCII as described above, and a space character (32) is sent out between items in the list. Any float or symbol items in the list are ignored. | 
| anything | input [list] 
 | If the message begins with a symbol, all int and symbol items in the message are converted to ASCII one character at a time, and a space character (32) is placed between them. Any float items in the list are ignored. If the message begins with a float, both floats and symbols are ignored. | 
| symbol | input [symbol] 
 | The ASCII value of each letter, digit, or other character in the symbol is sent out the outlet, one character at a time. |