Enter Hex Value to Convert
Hex to Decimal Reference (0-15)
Hex Decimal Binary Octal
0000000
1100011
2200102
3300113
4401004
5501015
6601106
7701117
88100010
99100111
A10101012
B11101113
C12110014
D13110115
E14111016
F15111117
Hex Color Reference
#FF0000Red
#00FF00Green
#0000FFBlue
#FFFF00Yellow
#FF00FFMagenta
#00FFFFCyan
#000000Black
#FFFFFFWhite

What is Hex Converter?

A Hex Converter transforms hexadecimal (base-16) numbers into Decimal, Binary, Octal, and ASCII text. Hexadecimal is the preferred number system in computing because it provides a human-readable representation of binary data.

Why Use Hex Converter?

  • Web Development - Convert and understand CSS hex color codes
  • Programming - Debug hex dumps and memory addresses
  • Network Analysis - Interpret hex-encoded network packets
  • Character Encoding - Convert hex to text and vice versa

How to Use Hex Converter

  1. Enter your hex value in the input field
  2. Choose your input format (space-separated or continuous)
  3. Click your desired conversion button or "Convert All"
  4. Copy any result using the copy button

Hex Conversion Examples

"48 65 6C 6C 6F" (Hex for "Hello")

Decimal: 72 101 108 108 111
Binary:  01001000 01100101 01101100 01101100 01101111
Octal:   110 145 154 154 157
Text:    Hello

Frequently Asked Questions

How do I convert hex to decimal?

Multiply each hex digit by its corresponding power of 16 and sum. Example: AB = (10 x 16) + (11 x 1) = 171.

Why is hex used instead of binary?

Hex is more compact while maintaining easy conversion to binary. Each hex digit = 4 binary bits.

How do I convert hex to text?

Convert each hex pair to decimal, then interpret as ASCII. "48" = 72 decimal = 'H'.