BinaryConverter

Hex to Octal Converter

Convert hexadecimal to octal instantly — type on the left and the result appears on the right. Everything runs in your browser, nothing is uploaded.

How to convert hex to octal

Hex and octal do not line up digit-for-digit, so the clean route is through binary: expand the hex to 4-bit groups, then re-slice the bits into threes for octal.

Method: convert through binary, because 8 and 16 are both powers of 2.

  1. Expand hex to binaryReplace each hex digit with its four bits.
  2. Regroup into threesRe-slice the bits into groups of three from the right, padding if needed.
  3. Read as octalTurn each 3-bit group into an octal digit from 0 to 7.

Examples 1A = 32FF = 377

Hex to Octal Table

Common hexadecimal values with their octal equivalents.

Hex to Octal conversion table
HexadecimalOctal
00
11
22
33
44
55
66
77
810
911
A12
B13
C14
D15
E16
F17
1020
1424
2040
3262
40100
64144
80200
FF377
100400
2001000
3E81750

Frequently asked questions

How do you convert hex to octal?

Turn each hex digit into four bits, join them, regroup the bits into threes from the right, then read as octal. 1F = 0001 1111 = 011 111 = 37.

Can I convert hex to octal directly?

Not digit-for-digit — go through binary or decimal, since 8 and 16 do not share a simple digit mapping.

What is FF in octal?

FF, which is 255, is 377 in octal.