Convert ASCII characters like ABC
into their hexadecimal form quickly and easily.
ASCII stands for American Standard Code for Information Interchange. It assigns numeric values to characters like A–Z, a–z, 0–9, and symbols.
Hexadecimal is a base-16 system using digits 0–9 and letters A–F. It's often used to represent binary data more compactly.
A
→ 65 (decimal) → 41
(hex)Character | Decimal | Hex |
---|---|---|
A | 65 | 41 |
B | 66 | 42 |
C | 67 | 43 |
a | 97 | 61 |
b | 98 | 62 |
c | 99 | 63 |
0 | 48 | 30 |
1 | 49 | 31 |
! | 33 | 21 |
Space | 32 | 20 |