Search results

Searching...

HEX to Binary

Convert hexadecimal values to binary representation

Hex to Binary Conversion

Hexadecimal is a compact way to represent binary data. Each hex digit (0-9, A-F) represents exactly 4 binary digits, making conversion straightforward.

Conversion Reference

  • 0 = 0000, 1 = 0001, 2 = 0010, 3 = 0011
  • 4 = 0100, 5 = 0101, 6 = 0110, 7 = 0111
  • 8 = 1000, 9 = 1001, A = 1010, B = 1011
  • C = 1100, D = 1101, E = 1110, F = 1111

Common Uses

  • Low-level programming and debugging
  • Understanding memory addresses
  • Color code conversions
  • Network and protocol analysis

Example

Hex FF converts to binary 11111111 (255 in decimal).