Binary to Text & Text to Binary Translator
Translate plain English strings to 8-bit binary bytes and vice versaFrequently Asked Questions
Each character in your text has an ASCII/Unicode code point (e.g. "A" = 65), which is converted to an 8-bit binary byte (e.g. 65 in binary is
01000001).
A standard space character (ASCII 32) is represented in 8-bit binary as
00100000.