Binary to ASCII Converter

Convert binary back to readable text (ASCII/UTF-8). Paste binary digits β€” with or without spaces between bytes β€” and each group of 8 bits is decoded to a character.

Worked example

The input 01001000 01101001 converts to Hi. Try editing the box above to convert your own text.

ASCII / character reference table

Each character has a numeric code that can be written in decimal, binary or hexadecimal:

CharacterDecimalBinary (8-bit)Hex
A650100000141
a970110000161
Z90010110105A
0480011000030
9570011100139
(space)320010000020
!330010000121
?63001111113F

Frequently asked questions

How do I convert binary to ascii?
Paste your input into the box above and the result appears instantly. For example, "01001000 01101001" becomes "Hi". Everything runs in your browser β€” nothing is uploaded.
Is my text uploaded to a server?
No. The conversion runs entirely in your browser with JavaScript, so your text never leaves your device.
Do I need spaces between the bytes?
No. Spaces are optional β€” the tool reads the bits in groups of 8 from the left. Spaces, tabs and new lines are ignored, so neatly spaced or solid binary both work.

Related text & encoding conversions

See all string conversions β†’