Text to Hex Converter
Convert text into hexadecimal byte values using UTF-8 encoding. A handy reference for developers, debugging and understanding character codes.
Result
The result will appear here…
How to use the Text to Hex
- 1Type or paste your text above.
- 2Read the hex bytes (two digits each).
- 3Copy it with one click.
What hexadecimal is
Hexadecimal (hex) is base-16, using digits 0–9 and letters A–F. It’s a compact way to write byte values: one byte (8 bits) becomes just two hex digits. For text, each character’s UTF-8 byte value is shown in hex — for example “A” = 41 and “a” = 61.
Text to Hex reference chart
Quick reference for letters A–Z and digits 0–9.
a61
b62
c63
d64
e65
f66
g67
h68
i69
j6a
k6b
l6c
m6d
n6e
o6f
p70
q71
r72
s73
t74
u75
v76
w77
x78
y79
z7a
030
131
232
333
434
535
636
737
838
939
Frequently asked questions
Why is hex useful?+
Hexadecimal is a compact way to represent bytes — widely used in programming, colour codes and debugging.