How to convert hexadecimal to binary ?

Let's convert the hexadecimal number into binary numbers.


One hexadecimal value = combination of 4 binary bits value.

Hexadecimal Number System

Example

(f)16 - (1111)2

(a)16 - (1010)2

In order to convert the hexadecimal number into binary, we need to express every hexadecimal value into 4 binary bits.




Example

(ff)16 in Binary

Binary equivalent of f is (1111)2.

(ff)16

(1111)(1111)

(11111111)2




Example

(ff33)16 in Binary

Binary equivalent of f is (1111)2.

Binary equivalent of 3 is (0011)2.

(ff33)16

(1111)(1111)(0011)(0011)

(1111111100110011)2