01001000 01100101 01101100 01101100 01101111 → text — binary and text
introfive bytes decoded
Answer
Hello
Why this example is worth doing
The decode direction, which is what most of the search traffic for this page actually wants. The tool accepts the bits with spaces, without spaces, or with any other separator, because pasted binary comes from everywhere and rejecting it on formatting grounds is the fastest way to lose a user. It warns rather than fails when the bit count is not a multiple of eight, and says how many bits are left over.
Try your own input in the Binary ⇄ text / ASCII. Convert text to binary and back, byte by byte, with the full UTF-8 breakdown.
How the answer is reached
Decode 5 bytes as ASCII
| byte | binary | hex | decimal |
|---|---|---|---|
| 0 | 01001000 | 48 | 72 |
| 1 | 01100101 | 65 | 101 |
| 2 | 01101100 | 6C | 108 |
| 3 | 01101100 | 6C | 108 |
| 4 | 01101111 | 6F | 111 |
| code point | character |
|---|---|
| U+0048 | H |
| U+0065 | e |
| U+006C | l |
| U+006C | l |
| U+006F | o |
textHello