Octal to Hex Converter

Converting Octal to Hexadecimal

Octal is a base 8 numbering system, in which each digit of an octal number has 8 possible values, 0-7. Octal is useful in computers when representing values that fill three bit multiples. For example, Unix file permissions use octal numbering, because the actual binary data that represents file permissions are twelve bits long.

Should you find yourself needing to convert from the less common octal form to its hexadecimal equivalent, convert the octal number to binary, and then simply convert from the binary number to get a hexadecimal one. Use the table below to help you do this.

Example

Converting 723518 to hexadecimal:

723518 = 1110100111010012

1110100111010012 = 74e916

Thus, 723518 = 74e916

Oct3-bit Binary4-bit BinaryHex4-bit BinaryHex
00000000010008
10010001110019
2010001021010A
3011001131011B
4100010041100C
5101010151101D
6110011061110E
7111011171111F