Octal to Decimal
Convert octal to decimal — base-8 values into everyday numbers.
How to use Octal to Decimal
- Enter the octal number — digits 0–7 only, e.g. 755.
- Read the decimal instantly: 755 → 493.
- Check the error line if a token contains 8 or 9 — those digits don't exist in base 8 and are flagged by name.
- Click “Copy result” to use the decimal value anywhere.
What is Octal to Decimal?
An octal to decimal converter reads a base-8 number and returns its base-10 value. Octal places are worth 1, 8, 64, 512… from the right, so 755 in octal is 7×64 + 5×8 + 5 = 493 in decimal — a different number than it looks, which is exactly why the conversion trips people up.
That deceptive familiarity is octal's hazard: every octal number looks like a valid decimal number. 100 in octal is 64 in decimal; 17 is 15. Several programming languages read a leading zero as octal (010 = 8, not 10), a design decision that has produced decades of subtle bugs.
About the Octal to Decimal
Type an octal value and its decimal equivalent appears instantly; multiple space-separated values convert independently, with 8s and 9s flagged as invalid rather than misread.
Uses: converting a Unix permission like 644 to its numeric value 420 when an API or config wants plain decimal, decoding octal escape sequences in strings (\101 is 65, the letter A), working through number-systems homework, and untangling legacy code where a leading zero silently made a constant octal. BigInt math keeps long values exact.
Runs live in your browser. Decimal to Octal reverses the direction; Octal to Binary shows the same value as permission-style bit triplets.
Frequently Asked Questions
Learn more
Octal Numbers Explained (Base 8)
Octal shows up in file permissions and older systems. Here is what base 8 is and how to convert it.
Read the guide