Type your text, and the tool encodes each character as an octal (base 8) number.
Base 8 — uses digits 0–7. Commonly used in Unix file permissions (chmod 755) and older systems.
'A' is ASCII 65 decimal = 101 octal.
Unix/Linux file permission bits use octal: rwx = 7 (4+2+1), r-x = 5 (4+1).