Convert text into octal, base 8, at three digits per byte. Octal still appears in Unix file permissions, older C escape sequences and some protocol dumps.
Show calculation steps
Processed privately in your browser — nothing you paste is uploaded, logged or stored.
How to use the Text to Octal
- Paste your text.
- Choose the unit and separator.
- Click "Convert to octal".
Frequently asked questions
Where is octal still used?
Mainly in Unix file permissions, where 755 and 644 are octal digit triples, and in older C-style escape sequences. It appears occasionally in legacy protocol dumps. For general byte work, hex has largely replaced it.
Why three digits per byte?
Each octal digit carries three bits, so eight bits need three digits – which can represent up to 511, more than a byte requires. The padding makes the columns line up.