Text to binary (and back) — UTF-8 aware, 8/16/32 bit grouping, emoji safe.
- Runs locally
- Category Encoding & Crypto
- Best for Checking small payloads, tokens, hashes, and encoded values quickly.
Output appears here.What this tool does
Convert text to binary and binary back to text, right in your browser. Pick UTF-8 (the modern default, handles Chinese / Japanese / emoji), strict ASCII (errors on bytes above 127, useful for teaching), or UTF-16 big-endian (2 bytes per BMP code unit). Group output in 8, 16, or 32-bit chunks, with space or 0b prefix separators — or no grouping at all for a raw bit stream. The decoder ignores whitespace and 0b prefixes, reports the exact position of any non-binary character, and tells you precisely how many bits your input is off by when it's not byte-aligned. Round-trips emoji and Han characters losslessly. No uploads, no tracking, no signup.
Tool details
- Input
- Text + Numbers
- The page exposes text boxes, numeric controls, file pickers, or structured inputs depending on the tool.
- Output
- Live result + Copy + Download
- The result area focuses on usable output, with copy, download, or preview actions when supported.
- Privacy
- Browser-side processing
- The main tool logic does not call an external API, so inputs normally stay in the current tab.
- Save / share
- No account required
- Open the page and use it; whether results survive refresh depends on the tool.
- Performance budget
- Initial JS <= 14 KB
- No WASM budget is declared, keeping the tool quick to open on mobile.
- Best fit
- Encoding & Crypto · Developer
- Category and role tags drive related tools, internal links, and quick fit checks.
How to use
-
1. Input
Paste or drop your content into the tool panel.
-
2. Process
Click the button. All processing is local in your browser.
-
3. Copy / Download
Copy the result or download to disk in one click.
How Text to Binary Converter fits into your work
Use it for quick browser-side encoding, decoding, hashing, token checks, and share-safe transformations.
Encoding jobs
- Checking small payloads, tokens, hashes, and encoded values quickly.
- Preparing values for APIs, URLs, docs, or support tickets.
- Avoiding account-based tools when the input might be sensitive.
Encoding checks
- Do not paste live secrets unless you are comfortable with local browser handling.
- Confirm whether the operation is reversible before sharing the result.
- For hashes, compare the exact algorithm and casing expected by the receiver.
Good next steps
These links move the current task into a more complete workflow.
- 1 Morse Code Translator Text to Morse code and back — encode, decode, audio playback, ITU standard. Open
- 2 ROT13 Encoder & Decoder ROT13 / ROT47 / Caesar cipher — encode and decode in your browser, instant. Open
- 3 ASCII Table Reference Complete 0–127 ASCII table: decimal, hex, octal, binary, character, name, HTML entity and escape — control codes explained, click to copy, fully searchable. Open
Real-world use cases
Teaching how UTF-8 turns one emoji into four bytes
A CS instructor demos character encoding to a class of 30. Type "Hi 🎉", switch to 8-bit grouping, and the 🎉 visibly expands to four bytes while "H" and "i" stay one byte each. Students see why a 5-character string can weigh 7 bytes, then flip to ASCII mode and watch the same emoji throw an error at byte 128.
Verifying a round-trip before trusting a homemade decoder
You wrote a binary parser in Python and it mangles accented names. Paste "José" here as UTF-8, copy the 40-bit output, then hit Swap to decode it back. If this tool round-trips it cleanly but your code drops the "é", the bug is in your byte handling, not the data. Costs 10 seconds and rules out half the suspects.
Reading a binary string a colleague pasted in Slack
Someone drops "01001000 01101001" in a thread with no context. Paste it into Binary to Text mode, which ignores the spaces, and you get "Hi" back instantly. No need to count bits by hand or open a Python REPL. If they forgot a digit, the error tells you the count is off by 1 and where.
Building a retro 8-bit puzzle for an escape room
A game designer encodes a 12-character clue into binary for a printed prop. Using 8-bit grouping with spaces, "OPEN THE BOX" becomes a clean grid of 12 byte-blocks that fits one card. Players decode it back with any binary chart, and you confirm the answer here before sending the card to print.
Common pitfalls
Pasting binary with stray letters and blaming the tool. The decoder ignores spaces and 0b prefixes but a typo'd "0l001000" (lowercase L) fails; read the error, which names the exact position.
Expecting ASCII mode to handle "café" or "李". Strict 7-bit ASCII errors on anything above U+007F by design; switch to UTF-8 for any non-English text.
Assuming "李" should be 16 bits because it is "one character". UTF-8 gives it 24 bits (three bytes); pick UTF-16 only if you truly need a fixed 2-byte width.
Privacy
Every conversion runs entirely in your browser via the built-in TextEncoder and TextDecoder. Your text and binary never leave the page, never hit a server, and are not logged. Your input is not written to the URL either, so pasting a password or private message here leaves no trace in history or shareable links. Close the tab and it is gone.
FAQ
Tool combos
Folks in your role tend to reach for these alongside this tool.
- 555 Timer Calculator Astable f = 1.44/((R1+2R2)C) + monostable t = 1.1RC — pick R1, R2, C in Ω/kΩ and µF/nF, read frequency, duty cycle and pulse width — browser-only
- Add Line Numbers Number every line of pasted text — set start, step and separator, zero-pad to align, skip blanks, or strip numbers back off — browser-only
- Age Difference Calculator The exact gap between two birthdays — years/months/days, percentage, and the date one person is twice the other's age — browser-only
- AI Eval Planner Generate eval cases, pass criteria, and edge cases from an AI feature, risks, and user path.