Text → Binary 변환
Text 값을 Binary로 변환합니다. 레지스터 덤프, 비트마스크, 패킷 분석, 프로토콜 디버깅에 적합하며 처리는 브라우저 안에서 끝납니다.
Any UTF-8 text including emoji and Vietnamese characters.
Space-separated 8-bit bytes.
Encode any UTF-8 text into binary, one space-separated byte per character. Great for puzzles, low-level demos, or inspecting how non-ASCII characters expand into multiple bytes.
Is the encoding configurable?
The tool always uses UTF-8, the universal default for the modern web.
How do I get binary without spaces?
Copy the result and replace spaces with an empty string in your editor — the decoder still accepts spaceless input as long as the length is a multiple of 8.