If you woke up today wanting to convert from hexadecimals to strings, this hex-to-text converter will bring your dreams to life. You can use it to translate hexadecimals to text.
Apart from converting hex to letters, you can convert the hex code corresponding to any character, no matter if it is not a letter or in a different language (Chinese, Arabic, Hindi, etc.). For the opposite conversion, we have a dedicated text-to-hex converter for you! And maybe you’ll also want to take a look at our decimal-to-hexadecimal converter, which is an intermediate step in the hex-to-letters conversion, as you’ll note in the FAQ section.
How to use this calculator for hex-to-text conversion
- Input your hex code.
- (Optional) Select your character encoding. By default, this hexadecimal-to-text translator uses UTF-8 Unicode; however, we offer the option to use other encodings.
- Your hex-to-string conversion will appear below “Text conversion.”
FAQs
How do I convert from hex to text?
To convert from hex to text:
- Split the hexadecimal code into pairs of digits. Each pair represents one byte:
48 69 - Convert each pair to decimal:
48 (hexadecimal)=72 (decimal)
69 (hexadecimal)=105 (decimal) - Interpret those bytes using UTF-8:
72= “H”
105= “i”
So, 48 69 corresponds to the text “Hi”.
What does the hexadecimal `FF` mean?
The FF hexadecimal code doesn’t correspond to a visible character or letter, but to the ASCII control character called “form feed character”.
What is the ASCII equivalent of the 0D hex code?
The 0D hex code corresponds to the control character called “Carriage Return (CR)”.
There’s no hex-to-text conversion in this case, as control characters do not represent written characters or symbols; they are used to control peripherals such as printers.
What comes after the FF hexadecimal?
In the hexadecimal system, the (hex) number 100 is what comes after FF. Here’s the explanation:
-
We know
FFcorresponds to the decimal255:FF = 255 (decimal)
-
Let’s add 1 to obtain the next number:
255 + 1 = 256 -
Now, convert
256(decimal) back to hex, i.e., decimal-to-hex conversion:256₁₀ = 100₁₆