Hexadecimal to Binary Converter
Convert hexadecimal to binary instantly with accurate results. Get binary code quickly from any hex value with our reliable converter for your conversion needs.
Hexadecimal to Binary Converter
Enter a hexadecimal number to convert it to binary.
Enter the hexadecimal number you want to convert (digits 0-9 and letters A-F).
How to Convert Hexadecimal to Binary?
To convert hexadecimal to binary, replace each hexadecimal digit with its 4-bit binary equivalent (0000 to 1111) and concatenate the groups. For example: 1F4₁₆ → 1=0001, F=1111, 4=0100 → 000111110100₂.
What is Hexadecimal?
Definition
Hexadecimal (base-16) is a positional numeral system that uses 16 distinct symbols: 0-9 to represent values zero to nine, and A-F (or a-f) to represent values ten to fifteen.
Common Uses
- Representing colors in web design (e.g., #FF5733)
- Memory addresses in computer systems
- MAC addresses in networking
- Unicode character codes
- Low-level programming and debugging
- Cryptography and hash values
Notation
Hexadecimal numbers are often prefixed with '0x' (e.g., 0xFF) or suffixed with 'h' (e.g., FFh) to distinguish them from decimal numbers.
What is Binary?
Definition
Binary (base-2) is a numeral system that uses only two digits: 0 and 1. It is the fundamental language of computers and digital electronics.
Common Uses
- Computer data storage and processing
- Digital electronics and circuits
- Network communication protocols
- Machine code and assembly language
- Boolean logic and decision-making
- Error detection and correction codes
Structure
Each binary digit (bit) represents a power of 2. From right to left: 2⁰, 2¹, 2², 2³, etc. For example, 1010₂ = 1×2³ + 0×2² + 1×2¹ + 0×2⁰ = 8 + 0 + 2 + 0 = 10₁₀.
Hexadecimal to Binary Conversion Table
This table shows common hexadecimal to binary conversions for quick reference.
- Hexadecimal (Hex)
- Binary (Bin)
- 0
- 0
- 1
- 1
- 2
- 10
- 3
- 11
- 4
- 100
- 5
- 101
- 6
- 110
- 7
- 111
- 8
- 1000
- 9
- 1001
- A
- 1010
- B
- 1011
- C
- 1100
- D
- 1101
- E
- 1110
- F
- 1111
- 10
- 10000
- 1A
- 11010
- 1F
- 11111
- 20
- 100000
- 3F
- 111111
- 64
- 1100100
- 7F
- 1111111
- FF
- 11111111
- 1FF
- 111111111
- 3E8
- 1111101000
- 7FF
- 11111111111
- ABC
- 101010111100
- FFF
- 111111111111