Hex to ASCII Conversion
This tool allows you to convert hexadecimal (base-16) values into ASCII text and vice versa.
How to Use This Converter
- Enter a hex string like
48 65 6C 6C 6F
to convert it to ASCII (e.g., "Hello") - Or input ASCII text to see its hexadecimal representation
Great for decoding hex-encoded messages or viewing raw data.
Understanding the Conversion
Each ASCII character is represented by a hexadecimal byte (two hex digits).
For example:
- "A" → Hex
41
- "B" → Hex
42
- "a" → Hex
61
Example
Convert 48 65 6C 6C 6F
to ASCII:
Hex | ASCII |
---|---|
48 | H |
65 | e |
6C | l |
6C | l |
6F | o |
Result: "Hello"
Why Convert Hex to ASCII?
Hex to ASCII is commonly used in:
- Debugging memory dumps
- Decoding URL/HTTP data
- Viewing encoded messages in network protocols
For a full character reference, check out our ASCII Table.