Octal Number System is a number system with base 8 as it uses eight symbols (or digits) namely 0, 1, 2, 3, 4, 5, 6, and 7. For example, 228, 138, 178, etc. are octal numbers. This number system is mainly used in computer programming as it is a compact way of representing binary numbers with each octal number corresponding to three binary digits.
In this article, we will discuss Octal Number System, Octal Number System Conversions, Octal Number System Examples, and Others in detail.
What is Number System?
A number system is a method of expressing numbers. It contains sets of symbols (or digits) combined with a set of rules to represent a particular quantity. The number system is mainly classified into four types:
What is an Octal Number System?
The octal number system is a base-8 system using digits 0-7, where each position represents a power of 8. It is commonly used in computing for easy conversion to binary.
'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.
Octal Numbers System Table
The table added below, shows the Octal Number and Decimal Number. 3 bits of Binary Number System is equivalent to one octal numbers.
Octal Numbers | Binary Equivalent |
---|
0 | 000 |
1 | 001 |
2 | 010 |
3 | 011 |
4 | 100 |
5 | 101 |
6 | 110 |
7 | 111 |
Now, we will learn about the conversion of octal number system to other number systems one by one. So let's get started.
Octal to Decimal Conversion
A decimal number system has a base 10 consisting of digits 0-9. We can easily convert an octal number to a decimal number by following these simple steps:
- Step 1: Write the octal number.
- Step 2: Multiply each digit of the given octal number with an increasing power of 8 starting from the rightmost digit.
- Step 3: Sum all the products obtained in step 2.
Example 1: 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.
Decimal to Octal Conversion
To convert a decimal number to an octal number follow these simple steps:
Step 1: Divide the given decimal number by 8.
Step 2: Write down the quotient and remainder obtained.
Step 3: Divide the quotient obtained by 8.
Step 4: Repeat step 2 and step 3 until the quotient becomes 0.
Step 5: Write the obtained remainder in reverse order.
Let's Consider an example for better understanding.
Example 2: Represent 16410 as Octal Number.
Solution:
164/8 , Quotient = 20 and Remainder = 4
20/8 , Quotient = 2 and Remainder = 4
2/8 , Quotient = 0 and Remainder = 2
Now, By writing obtained remainders in reverse order we get, 244.
Hence 2448 is octal representation of 16410
The image added below shows binary to octal conversion.

Octal to Hexadecimal Conversion
A hexadecimal number system has a base 16 and it is an alphanumeric number system consisting of digits from 0 to 9 and alphabets from A to F. To convert an octal number to a hexadecimal number: First convert the octal number to the decimal number; Then convert the obtained decimal number to the hexadecimal number.
Steps to Convert Octal Number to Decimal Number
- Step 1: Write the octal number.
- Step 2: Multiply each digit of the given octal number with an increasing power of 8 starting from the rightmost digit.
- Step 3: Sum all the products obtained in step 2.
Steps to Convert Decimal Number to Hexadecimal Number
- Step 1: Divide the decimal number by 16.
- Step 2: Write down the quotient and remainder obtained.
- Step 3: Divide the quotient obtained by 16.
- Step 4: Repeat step 2 and step 3 until the quotient becomes 0.
- Step 5: Write the obtained remainder in reverse order.
- Step 6: Convert each obtained remainder to its corresponding hexadecimal digit.
Corresponding value of 0-9 remains the same in hexadecimal and 10-15 corresponds to A-F in hexadecimal that is represented as,
Example 3: Convert 1748 to a hexadecimal number.
Solution:
Step 1: Convert 1748 to decimal
1748 = 1 × 82 + 7 × 81 + 4 × 80
1748 = 1 × 64 + 7 × 8 + 4 × 1
1748 = 64 + 56 + 4 = 124
We get 1748 = 12410
Step 2: Covert 12410 to hexadecimal
124/16, Quotient = 7, Remainder = 12
7/16, Quotient = 0, Remainder = 7
Converting the obtained remainders to corresponding hexadecimal number and writing it in reverse order we get:
12410 = 7C16
Hence we get 1748 = 7C16
Hexadecimal to Octal Number
To convert a Hexadecimal number to an Octal number we have to First convert the Hexadecimal number to a Decimal number and then the Decimal number to an Octal number.
Steps to Convert Hexadecimal Number to Decimal Number
We can use following steps to convert hexadecimal number to decimal numbers.
Step 1: Write the corresponding decimal value for the given hexadecimal number.
Step 2: Multiply each digit of the obtained number with an increasing power of 16 starting from the rightmost digit.
Step 3: Sum all the products obtained in step 2.
Steps to Convert Decimal Number to Octal Number
We can use following steps to convert decimal number to octal numbers.
Step 1: Divide the given decimal number by 8.
Step 2: Write down the quotient and remainder obtained.
Step 3: Divide the quotient obtained by 8.
Step 4: Repeat step 2 and step 3 until the quotient becomes 0.
Step 5: Write the obtained remainder in reverse order.
Let's consider an example for better understanding.
Example 4: Convert 9B16 to Octal Number.
Solution:
Step 1: First convert 9B16 to decimal number:
Corresponding decimal value of 9 and B are 9 and 11 respectively.
9B16 = 9 × 161 + 11 × 160
9B16 = 9 × 16 + 11 × 1
9B16 = 144 + 11 = 155
We get 9B16 = 15510
Step 2: Convert 15510 to Octal Number
155/8, Quotient = 19, Remainder = 3
19/8, Quotient = 2, Remainder = 3
2/8, Quotient = 0, Remainder = 2
Writing the obtained remainders in reverse order we get:
15510 = 2338
Hence we get 9B16 = 2338
Octal to Binary Number
The conversion of an octal number to a binary number is very simple, we have to simply write the corresponding binary value of each digit of the given octal number. Corresponding values of octal and binary numbers are as follows:
Octal Number | Corresponding Binary Number |
---|
0 | 000 |
1 | 001 |
2 | 010 |
3 | 011 |
4 | 100 |
5 | 101 |
6 | 110 |
7 | 111 |
Example 5: Convert 2138 to a binary number.
Solution:
Write the corresponding binary value of each digit of the given octal number:
2 ---> 010
1 ---> 001
3 ---> 011
Hence we get 2138 = 0100010112
Binary to Octal Number
We can easily convert a binary number to an octal number by following these steps:
- Step 1: Split the binary number into sets of three digits, starting from the right.
- Step 2: Write the corresponding octal value of each binary triplet obtained in step 1.
Example 6: Convert 1001110012 to an octal number.
Solution:
Split 100111001 into sets of three digits and write its corresponding octal value
100 ---> 4
111 ---> 7
001 ---> 1
Hence we get, 1001110012 = 4718
The binary-to-decimal conversion is added in the image below,

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 |
---|
Read More,
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
Practice Questions on Octal Number System
Q1: Convert 12110 to an octal number.
Q2: What is Octal Value of 1000100002?
Q3: Find the Decimal Equivalent of 558.
Q4: Convert 12F16 to Octal number.
Q5: What will be the binary value of 578?
Octal Number System - FAQs
What are Octal Number System?
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.
What is Octal Equivalent of (100)10?
(144)8 is Octal Representation of (100)10
What are Types of Number Systems.?
The four types of number system are,
- Decimal Number System (with base 10 and symbols ranging between 0-9)
- Binary Number System (with base 2 and symbols 0 and 1)
- Hexadecimal Number System (with base 16 and symbols raging between 0-9 and from A to F)
- Octal Number System (with base 8 and symbols ranging between 0-7)
What are Symbols of Octal Number System?
The base of an octal number system is 8 nd hence it consists of 8 symbols which are 0, 1, 2, 3, 4, 5, 6, and 7.
How to Convert Octal Number to Hexadecimal Number?
To convert an octal number to a hexadecimal number, First convert the octal number to the decimal number; Then convert the obtained decimal number to the hexadecimal number.
What is Octal Equivalent of (1010)2?
Breaking 1010 into groups of three starting from rightmost digit and adding leading zeroes, 001 , 010
Write Octal Equivalent of Groups,
Hence we get (1010)2 = (12)8
What is 123 in Octal Number System?
123 in Octal Number System is equal to 173.
What are uses of Octal Number System?
Octal Number system are used in Computer applications sectors, aviation sector and research purposes.
Suggested Quiz
10 Questions
What is the decimal equivalent of the octal number 57?
Explanation:
57 = (5 × 8¹) + (7 × 8⁰) = 47
How to write (8)10 in Octal.
Explanation:
Divide 8 by 8 and note the quotient and remainder:
8 ÷ 8 = 1 remainder 0
Write the result in reverse order: 10.
What is the sum of octal numbers 34 and 25?
Explanation:
34 = (28)10
25 = (21)10
28 + 21 = (49)10 = (61)8
How many bits are required to represent the octal number 756 in binary?
Explanation:
Each digit in octal requires 3 bits to represent in binary because 23 = 8.
756octal = 111101110binary
The binary representation is 111101110, which has 9 bits.
What is the result of octal multiplication 13 × 7?
Explanation:
13 = 11(Base 10)
7 = 7(Base 10)
11 × 7 = 77(Base 10) = 115(Oct)
What will be the output of this octal operation (31 × 7) + 11?
Explanation:
To solve:
31 = 25(Base 10)
7 = 7(Base 10)
25 × 7 = 175(Base 10) = 257(Oct)
257 = 175(Base 10)
11 = 9(Base 10)
175 + 9 = 184(Base 10) = 270(Oct)
What will be the output of the following octal division 110110 ÷ 10?
Explanation:
110110 = 36936(Base 10)
10 = 8(Base 10)
36936 ÷ 8 = 4617(Base 10) = 11011(Oct)
Covert (88AA)16 to Octal.
Explanation:
Convert each hex digit to 4 binary digits and then convert each 3 binary digits to octal digits (see conversion tables below):
88AA = 1000 1000 1010 1010
= 104252
Simplify (128)10 + (11A)16 + (1111)2, and give the answer in Octal.
Explanation:
Convert all the Numbers to Decimal:
(11A)16 = 1 × 162 + 1 × 161 + 10 × 160 = 256 + 16 + 10 = 282
(1111)2 = 1 × 23 + 1 × 22 + 1 × 21 + 1 × 20 = 8 + 4 + 2 + 1 = 15
Add the values
128 + 282 + 15 = 425
Convert (425)10 to octal by repeated division by 8:
Write the remainders in reverse order: 651
Simplify (250)10 + (2F3)16 + (10101)2, and give the answer in octal.
Explanation:
Convert each value to decimal:
(250)10: This is already in decimal form, so no conversion is needed.
2F3)16: 2 × 162 + 15 × 161 + 3 × 160 = 512 + 240 + 3 = 755
(10101)2: 1 × 24 + 0 × 23 + 1 × 22+ 0 × 21 + 1 × 20 = 16 + 4 + 1 = 21
Add the values in decimal: 250 + 755 + 21 = 1026
Convert (1026)10 to octal by dividing repeatedly by 8:
Write the remainders in reverse order: 2002.
Quiz Completed Successfully
Your Score : 2/10
Accuracy : 0%
Login to View Explanation
1/10
1/10
< Previous
Next >
Similar Reads
15 Best IPTV Service Providers Subscriptions (Top Picks)
Finding a reliable IPTV service provider can be challenging with so many options available. As streaming becomes the new standard for entertainment, IPTV services have gained huge popularity by offering a wide variety of TV channels, on-demand content, and international programmingâall through an in
14 min read
Spring Boot Tutorial
Spring Boot is a Java framework that makes it easier to create and run Java applications. It simplifies the configuration and setup process, allowing developers to focus more on writing code for their applications. This Spring Boot Tutorial is a comprehensive guide that covers both basic and advance
10 min read
Full Stop Punctuation
Answer: A full stop is a punctuation mark (.) used to signal the end of a sentence. It indicates a pause longer than that signified by a comma or a semicolon, marking the conclusion of a statement or thought. Full stop is one of the most fundamental elements of written language. Its role in punctuat
4 min read
Class Diagram | Unified Modeling Language (UML)
A UML class diagram is a visual tool that represents the structure of a system by showing its classes, attributes, methods, and the relationships between them. It helps everyone involved in a projectâlike developers and designersâunderstand how the system is organized and how its components interact
12 min read
Spring Boot Interview Questions and Answers
Spring Boot is a Java-based framework used to develop stand-alone, production-ready applications with minimal configuration. Introduced by Pivotal in 2014, it simplifies the development of Spring applications by offering embedded servers, auto-configuration, and fast startup. Many top companies, inc
15+ min read
Free Reverse Phone Number Lookup Services and Sites: 10 Best Picks in 2025
Find all the latest list of Reverse Phone Number Lookup Services and Sites - Due to the rapid increase in numbers of spam calls and unknown numbers it has now become vital to use reverse phone number lookup services. Whether you're trying to identify an unknown caller or check the legality of a phon
12 min read
How to Download and Install the Google Play Store
The Google Play Store is the heartbeat of your Android experienceâhome to millions of apps, games, and updates that keep your device functional, fun, and secure. But what if your phone or tablet doesnât have it pre-installed? In this step-by-step guide, youâll learn how to safely download and instal
6 min read
6 Best ChatGPT Plugin for Summarizing YouTube Videos Quickly
Presenting the best ChatGPT plugin for YouTube summary that will transform media consumption. Gathering important ideas from long YouTube videos in a world full of information can be intimidating. It reduces intricate information into a brief synopsis, enabling you to quickly assimilate the main poi
9 min read
ChatGPT Tips & Tricks: 5 Secret Tips That Can Boost Your ChatGPT Game to God Mode
Are you one of those folks who've tried using ChatGPT but ended up feeling a bit frustrated? Well, let us tell you, you're not alone in this sad situation. Whether you're a student or a tech whiz working in IT, ChatGPT has been a helpful companion for everyone! But the thing is, not everyone knows h
7 min read
Python Variables
In Python, variables are used to store data that can be referenced and manipulated during program execution. A variable is essentially a name that is assigned to a value. Unlike many other programming languages, Python variables do not require explicit declaration of type. The type of the variable i
7 min read