OCT to
DEC Converter Online
number-base
From:
To:
Input
OCT → DEC
Ctrl+↵ convert
Was this tool helpful?
Related Tools
DEC to HEX Converter Online DEC to BIN Converter Online HEX to DEC Converter Online BIN to DEC Converter Online OCT to HEX Converter Online
Frequently Asked Questions
Each digit of the octal number is multiplied by the corresponding power of 8. For example, 377₈ = 3×64 + 7×8 + 7×1 = 255₁₀.
In chmod, each digit is the sum of permissions: read (4) + write (2) + execute (1). For example, 755₈ = owner rwx (7), group r-x (5), others r-x (5), which equals 493 in decimal.
In most programming languages, octal numbers use the prefix 0o (Python, JavaScript) or 0 (C, Java). For example, 0o377 = 255 in decimal.