Octal to Binary Converter

Convert octal numbers to binary using direct digit-to-3-bit mapping. Useful for understanding file permissions and digital systems.

Only digits 0-7 are allowed

How to Convert Octal to Binary

1

Write down the octal number

2

Convert each octal digit to its 3-bit binary equivalent

3

Combine all the 3-bit groups to get the final binary number

4

Remove any leading zeros if desired (optional)

Example: Convert 75₈ to Binary

Step 1: Convert each digit

7₈ = 111₂

5₈ = 101₂

Step 2: Combine results

75₈ = 111101₂

Octal to Binary Conversion Table

Octal Binary Octal Binary
00004100
10015101
20106110
30117111

Unix File Permissions Example

Octal notation is commonly used for Unix file permissions. Each digit represents permissions for user, group, and others:

755₈ = 111 101 101₂
User (7): 111 = rwx (read, write, execute)
Group (5): 101 = r-x (read, execute)
Others (5): 101 = r-x (read, execute)
644₈ = 110 100 100₂
User (6): 110 = rw- (read, write)
Group (4): 100 = r-- (read)
Others (4): 100 = r-- (read)

Common Octal to Binary Conversions

7 111
10 001000
77 111111
100 001000000
377 011111111
777 111111111

🛠️ Free Smart Tools

English English