Convert to/from Binary

Convert text to binary and binary to text.

Result
The Methodology
charCodeAt(0).toString(2)

This tool uses the verified professional formula shown above. We cite our sources so you can trust every result.

How it works

For Text to Binary, each character is converted to its 8-bit Unicode/ASCII value. For Binary to Text, every 8 bits are parsed as an integer and converted back to a character.