BinaryConverter

ASCII to Hex Converter

Convert ascii to hexadecimal instantly — type on the left and the result appears on the right. Everything runs in your browser, nothing is uploaded.

How to convert ascii to hex

Each ASCII character has a code, and hex writes that code compactly in two digits. Convert ASCII text to hex character by character.

Method: one byte per character, using the ASCII code that maps numbers to characters.

  1. Take each characterWork through the text one character at a time.
  2. Find its ASCII codeLook up the character's code — for example A is 65.
  3. Write the code as hexWrite each ASCII code as two hexadecimal digits.

Examples Hi = 48 69A = 41

ASCII to Hex Table

Common ascii values with their hexadecimal equivalents.

ASCII to Hex conversion table
ASCIIHexadecimal
A41
B42
C43
a61
b62
c63
030
131
939
!21
?3F
@40

Frequently asked questions

How do you convert ASCII to hex?

Find each character's ASCII code, then write it as two hex digits. 'H' is 72, which is 48; 'Hi' is 48 69.

What is 'A' in hex?

A is ASCII 65, which is 41 in hex.

Does letter case matter?

Yes — 'A' is 41 and 'a' is 61; they are different codes.