What is the Octal to Decimal Converter?
This tool converts octal numbers (base-8) to decimal numbers (base-10), useful for system administration and legacy computing.
Why Convert Octal to Decimal?
Unix/Linux Permissions
Legacy Systems
Programming
Digital Systems
The Conversion Method
Multiply each octal digit by its place value (a power of 8) and add the results together.
755 = 7×64 + 5×8 + 5×1 = 448 + 40 + 5 = 493.How to Use
Enter the Octal Number
Use the digits 0–7 only.
View the Decimal Result
The conversion is automatic and appears as you type.
Understand the Value
Copy the decimal result — useful for permission calculations and comparisons.
Unix Permission Examples
| Octal | Decimal | Permission |
|---|---|---|
| 644 | 420 | rw-r--r-- |
| 755 | 493 | rwxr-xr-x |
| 777 | 511 | rwxrwxrwx |
| 400 | 256 | r-------- |
Frequently Asked Questions
Are 8 and 9 valid in octal?
No. Octal uses only the digits 0 through 7. The digits 8 and 9 are not part of the system and will be rejected.
Why is 755 equal to 493?
755 in octal is 7×64 + 5×8 + 5×1 = 448 + 40 + 5 = 493. This is why chmod 755 corresponds to the decimal value 493.
What does rwx = 421 mean?
Each permission has a value: read = 4, write = 2, execute = 1. Adding them gives the octal digit for that user class, so rwx = 4 + 2 + 1 = 7.
How do I convert decimal back to octal?
Type a decimal number directly into the result field, or press the swap button to reverse the conversion direction.
No comments yet. Be the first to comment!