Octal Number System (original) (raw)

Last Updated : 17 Dec, 2025

The octal number system is a base-8 system using digits (0–7): 0, 1, 2, 3, 4, 5, 6, and 7.

**For example: 228, 138, 178, etc, are octal numbers.

It is widely used in computer programming as a compact representation of binary numbers, where each octal digit corresponds to three binary digits.

Octal Number System Table

The table below shows the relationship between octal and binary numbers (each octal digit represents 3 bits in binary):

Octal-to-Binary--1-

'**OCTAL' is derived from the Latin word 'OCT', which means Eight. The number system with base 8 and symbols ranging between 0-7 is known as the Octal Number System. Each digit of an octal number represents a power of 8. It is widely used in computer programming and digital systems. Octal number system can be converted to other number systems and visa versa.

**For example, an octal number (10)8 is equivalent to 8 in the decimal number system, 001000 in the binary number system and 8 in the hexadecimal number system.

Conversion from Octal to Other Number Systems

Octal Numbers are represented with digits 0-7 and with base 8. Conversion of a number system means conversion from one base to another. Following are the conversions of the Octal Number System to other Number Systems:

**Octal to Decimal Conversion

Octal numbers are represented in base 8, but the decimal numbers are of base 10. Hence, to convert an octal number to a decimal number, the base of that number is to be changed.

**Example: (247)8 is to be converted to decimal:

Octal---1

**Follow the steps given below:

**Octal to Binary Conversion

Octal numbers are represented in base 8, but the binary numbers are of base 2. Hence, to convert an octal number to a binary number, the base of that number is to be changed.

**Example: (247)8 is to be converted to binary

Octal---2

**Follow the steps given below:

**Octal to Hexadecimal Conversion

Octal numbers are represented in base 8, but the hexadecimal numbers are of base 16. Hence, to convert an octal number to a hex number, the base of that number is to be changed.

**Example: (5456)8 is to be converted to hex

Octal---3

**Follow the steps given below:

Decimal to Octal Conversion

The image added below shows binary to octal conversion.

Octal---4

**Follow the steps given below:

To convert a decimal number to an octal number follow these simple steps:

Octal Multiplication Table

Octal Multiplication table is added below,

× 0 1 2 3 4 5 6 7
0 0 0 0 0 0 0 0 0
1 0 1 2 3 4 5 6 7
2 0 2 4 6 10 12 14 16
3 0 3 6 11 14 17 22 25
4 0 4 10 14 20 24 30 34
5 0 5 12 17 24 31 36 43
6 0 6 14 22 30 36 44 52
7 0 7 16 25 34 43 52 61

**Also Check:

Solved Examples on Octal Numbers System

**Example 1: What is Decimal Equivalent of 11218?

Solution:

11218 = 1 × 83 + 1 × 82 + 2 × 81 + 1 × 80
11218 = 1 × 512 + 1 × 64 + 2 × 8 + 1 × 1
11218 = 512 + 64 + 16 + 1 = 593

Hence, 11218 = 59310

**Example 2: Convert 278 into the binary number.

**Solution:

Write binary equivalent of each digit of 278

2 ---> 010
7 ---> 111

Hence 278 = 0101112

**Example 3: Find the octal equivalent of 10010012.

**Solution:

Breaking 10101111 into groups of three starting from rightmost digit and adding leading zeroes we get:

001, 001, 001

Write the octal equivalent of the groups formed

001 -> 1
001 -> 1
001 -> 1

Answer is (111)8

**Example 4: Represent 1238 as a Decimal Number.

**Solution:

1238 = 1 × 82 + 2 × 81 + 3 × 80
⇒ 1238 = 1 × 64 + 2 × 8 + 3 × 1
⇒ 1238 = 64 + 16 + 3
⇒ 1238 = 8310

Hence 8310 is decimal representation of 1238.

Practice Questions on Octal Number System

**Question 1: Convert 12110 to an octal number.

**Question 2: What is Octal Value of 1000100002?

**Question 3: Find the Decimal Equivalent of 558.

**Question 4: Convert 12F16 to Octal number.

**Question 5: What will be the binary value of 578?

**Answer Key: