Converting these numbers should be second nature for anyone working hands-on in computing, but this chart may be handy while learning.

Note that you don’t necessarily need to include the leading 0s in the binary numbers, although it is handy to demonstrate that a single Hexadecimal digit contains exactly four bits of information.

Base Conversions Table

Decimal (0dX)Binary (0bX)Hexadecimal (0xX)
000000
100011
200102
300113
401004
501015
601106
701117
810008
910019
101010A
111011B
121100C
131101D
141110E
151111F

Converting Binary to Hexadecimal

flowchart TD
A(0b11011011)
A-->B(0b1101)
A--Split into 4-bit groups-->C(0b1011)
B-->D(0d13)
C--Convert each to decimal-->E(0d11)
D-->F(0xD)
E--Convert each to hex -->G(0xB)
H(0b11011011 = 0xDB)
F-->H
G--Combine for the answer-->H