Binary → Text 변환
Binary 값을 Text로 변환합니다. 레지스터 덤프, 비트마스크, 패킷 분석, 프로토콜 디버깅에 적합하며 처리는 브라우저 안에서 끝납니다.
Each byte uses 8 bits. Spaces between groups are optional.
Decoded UTF-8 text.
Decode binary into the text it encodes. The converter expects UTF-8 byte sequences. Useful for inspecting protocol payloads, educational exercises, or recovering text from binary dumps.
Can I decode ASCII-only binary?
Yes. ASCII is a subset of UTF-8, so 7-bit ASCII byte sequences decode the same way.
Why does my output show replacement characters?
The bytes form an invalid UTF-8 sequence. Verify the byte boundaries or source encoding.