Convert octal numbers back into readable text, validating that every digit falls in the range 0 to 7.
Show calculation steps
Processed privately in your browser — nothing you paste is uploaded, logged or stored.
How to use the Octal to Text
- Paste the octal numbers.
- Choose the unit.
- Click "Convert to text".
Frequently asked questions
Why is the digit 8 or 9 rejected?
Octal is base 8, so only the digits 0 through 7 exist. An 8 or 9 means the data is really decimal, or a digit was mistyped.
How do I recognise octal in the wild?
Context is usually the clue. A three-digit group where no digit exceeds 7 – like 755 or 644 – is very often a Unix permission mask. In C-family source code a leading zero marks an octal literal, which is a classic source of bugs when a zero-padded decimal is read as octal.
Can octal represent any byte value?
Yes. Three octal digits cover 0 to 511, which comfortably includes every byte value from 0 to 255. That is why byte dumps in octal use three-digit groups.