Decimal to Octal Converter
Convert a decimal number to octal and binary.
Convert a decimal number to base 8.
The math behind it
Repeatedly divide by 8; the remainders (0–7) form the octal number.
Worked example
64 → 100.
FAQ
Octal use?
Unix file permissions (chmod) use octal.