Text to Binary Converter

Convert ASCII/UTF-8 text to space-separated 8-bit binary groups and back.

Characters: 0
Bytes: 0
Binary groups: 0

Text

Binary

Copied!

Summary

Convert ASCII/UTF-8 text to space-separated 8-bit binary groups and back.

How it works

  1. For text-to-binary conversion, each character's Unicode code point is converted to an 8-bit binary string using charCodeAt(). For binary-to-text, each 8-bit group is parsed as an integer and converted back to its character. Bytes are separated by spaces.

Use cases

Frequently Asked Questions

Last updated: 2026-05-23 · Reviewed by Nham Vu