bookmark

Octal (base 8) to Hexadecimal (base 16)

Converter Tool

to


 
result
487c20 = 3535210
1011012 = 4510

The octal numeral system, or oct for short, is the base-8 number system, and uses the digits 0 to 7. Octal numerals can be made from binary numerals by grouping consecutive binary digits into groups of three (starting from the right). For example, the binary representation for decimal 74 is 1001010. Two zeroes can be added at the left: (00)1 001 010, corresponding the octal digits 1 1 2, yielding the octal representation 112.

conversion table

octal (base 8)hexadecimal (base 16)octal (base 8)hexadecimal (base 16)
1= 113= b
2= 214= c
3= 315= d
4= 416= e
5= 517= f
6= 620= 10
7= 721= 11
10= 822= 12
11= 923= 13
12= a24= 14

In mathematics and computing, hexadecimal (also base 16, or hex) is a positional numeral system with a radix, or base, of 16. It uses sixteen distinct symbols, most often the symbols 0–9 to represent values zero to nine, and A, B, C, D, E, F (or alternatively a, b, c, d, e, f) to represent values ten to fifteen.

conversion table

hexadecimal (base 16)octal (base 8)hexadecimal (base 16)octal (base 8)
1= 1b= 13
2= 2c= 14
3= 3d= 15
4= 4e= 16
5= 5f= 17
6= 610= 20
7= 711= 21
8= 1012= 22
9= 1113= 23
a= 1214= 24