Convert ASCII value to Hex
This tool allows you to convert ASCII text to hexadecimal values. ASCII (American Standard Code for Information Interchange) is a character encoding standard that represents text characters as numbers. Each character is assigned a unique decimal number between 0 and 127, which can be converted to hexadecimal.
For example:
• The letter 'A' has ASCII value 65 (decimal) which is 41 in hexadecimal
• The letter 'a' has ASCII value 97 (decimal) which is 61 in hexadecimal
• The space character has ASCII value 32 (decimal) which is 20 in hexadecimal
Simply enter any text in the input field above and click "Convert To Hex" to see its hexadecimal representation. The tool will convert each character to its corresponding hex value. This is useful for working with binary data, network protocols, or when you need to represent text in a hex format.
ASCII Character Reference Table
Character | ASCII | Binary | Hex |
---|---|---|---|
A | 65 | 01000001 | 41 |
B | 66 | 01000010 | 42 |
C | 67 | 01000011 | 43 |
D | 68 | 01000100 | 44 |
E | 69 | 01000101 | 45 |
F | 70 | 01000110 | 46 |
G | 71 | 01000111 | 47 |
H | 72 | 01001000 | 48 |
I | 73 | 01001001 | 49 |
J | 74 | 01001010 | 4A |
K | 75 | 01001011 | 4B |
L | 76 | 01001100 | 4C |
M | 77 | 01001101 | 4D |
N | 78 | 01001110 | 4E |
O | 79 | 01001111 | 4F |
P | 80 | 01010000 | 50 |
Q | 81 | 01010001 | 51 |
R | 82 | 01010010 | 52 |
S | 83 | 01010011 | 53 |
T | 84 | 01010100 | 54 |
U | 85 | 01010101 | 55 |
V | 86 | 01010110 | 56 |
W | 87 | 01010111 | 57 |
X | 88 | 01011000 | 58 |
Y | 89 | 01011001 | 59 |
Z | 90 | 01011010 | 5A |
a | 97 | 01100001 | 61 |
b | 98 | 01100010 | 62 |
c | 99 | 01100011 | 63 |
d | 100 | 01100100 | 64 |
e | 101 | 01100101 | 65 |
f | 102 | 01100110 | 66 |
g | 103 | 01100111 | 67 |
h | 104 | 01101000 | 68 |
i | 105 | 01101001 | 69 |
j | 106 | 01101010 | 6A |
k | 107 | 01101011 | 6B |
l | 108 | 01101100 | 6C |
m | 109 | 01101101 | 6D |
n | 110 | 01101110 | 6E |
o | 111 | 01101111 | 6F |
p | 112 | 01110000 | 70 |
q | 113 | 01110001 | 71 |
r | 114 | 01110010 | 72 |
s | 115 | 01110011 | 73 |
t | 116 | 01110100 | 74 |
u | 117 | 01110101 | 75 |
v | 118 | 01110110 | 76 |
w | 119 | 01110111 | 77 |
x | 120 | 01111000 | 78 |
y | 121 | 01111001 | 79 |
z | 122 | 01111010 | 7A |