Text tool
Your files never leave your device
Check your Network tab and see
Work starts the moment you drop a file
No daily limit, no sign-up, no watermark
Use the same spacing you got from the encoder: spaces between bytes, no 0b prefix. Multi-byte characters decode back to a single glyph when the byte sequence is valid UTF-8. If you hand-edit bits, expect decode failures rather than mojibake hidden as question marks.
Each chunk must be only 0 and 1 and represent one byte when parsed. Garbage tokens stop the run with a message pointing at the position. TextDecoder in fatal mode rejects invalid UTF-8 byte sequences instead of substituting characters.
No continuous bitstream without spaces, no automatic grouping by character, and no file upload. Hex input like FF is not accepted here — use a hex tool or convert manually.
That is the promise behind every tool here. Files are read in your browser tab, processed there, and discarded when you close it — never uploaded to our servers.
Encode text as UTF-8 bytes shown as 8-bit binary groups (not UTF-16 code units).
Decimal ASCII (0–127) or full Unicode code points — pick the mode that matches your spec.
Decode space-separated decimal values to text; ASCII mode enforces 0–127.
Instantly count words, characters, sentences, and paragraphs in your text.
UPPERCASE, lowercase, Title Case, sentence case, camelCase, snake_case, kebab-case, and CONSTANT_CASE — in your browser.
Tabs to spaces, collapse runs of spaces, trim line ends, and optionally collapse extra blank lines.