bookmark

Octal (base 8) to Hexatrigesimal (base 36)

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)hexatrigesimal (base 36)octal (base 8)hexatrigesimal (base 36)
1= 113= b
2= 214= c
3= 315= d
4= 416= e
5= 517= f
6= 620= g
7= 721= h
10= 822= i
11= 923= j
12= a24= k

Base36 is a binary-to-text encoding scheme that represents binary data in an ASCII string format by translating it into a radix-36 (aka Hexatrigesimal) representation. The choice of 36 is convenient in that the digits can be represented using the Arabic numerals 0–9 and the Latin letters A–Z (the ISO basic Latin alphabet).

conversion table

hexatrigesimal (base 36)octal (base 8)hexatrigesimal (base 36)octal (base 8)
1≈ 1b≈ 13
2≈ 2c≈ 14
3≈ 3d≈ 15
4≈ 4e≈ 16
5≈ 5f≈ 17
6≈ 6g≈ 20
7≈ 7h≈ 21
8≈ 10i≈ 22
9≈ 11j≈ 23
a≈ 12k≈ 24