Encode text to Ascii85 or Z85 and decode it back, UTF-8 safe, with z-compression and <~ ~> handling, all in your browser
- Runs locally
- Category Encoding & Crypto
- Best for Checking small payloads, tokens, hashes, and encoded values quickly.
What this tool does
Free online Base85 tool that encodes and decodes both the Adobe Ascii85 variant and the ZeroMQ Z85 variant. Base85 packs every 4 bytes into 5 printable characters, so it carries roughly 25% less overhead than the 33% you pay with Base64, which is why PDF streams, PostScript and git binary diffs reach for it. Type or paste any text and it is read as UTF-8 bytes first (via TextEncoder), so Chinese, Japanese, Arabic and emoji all survive the round trip byte for byte. Ascii85 mode supports the classic "z" shorthand that collapses an all-zero four-byte group to one letter, plus optional `<~ ~>` delimiters that match Adobe output. Decoding is forgiving: it skips spaces, tabs and newlines, recognizes the `<~ ~>` markers automatically, and reports the exact offending character when the input is malformed. Everything runs client-side with one-click copy and a shareable URL. 100% in-browser, nothing is uploaded.
Tool details
- Input
- Text
- The page exposes text boxes, numeric controls, file pickers, or structured inputs depending on the tool.
- Output
- Live result + Copy
- 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
- Shareable URL state
- Key settings are encoded in the URL so another person can reopen the same setup.
- Performance budget
- Initial JS <= 9 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 Base85 / Ascii85 Encoder & Decoder 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 MD5 / SHA Hash Generator Compute MD5 / SHA-1 / SHA-256 / SHA-384 / SHA-512 hashes, all five at once, browser-only Open
- 2 Number Base Converter Number base converter — binary, octal, decimal, hex, and any base 2-36. Bitwise too. Open
- 3 Base64 Encoder & Decoder Encode or decode Base64 — text, files, and Data URLs. Runs entirely in your browser. Open
Real-world use cases
Recover a corrupted git binary patch fragment
A git diff --binary patch failed to apply and you suspect a line got truncated in transit. Git wraps binary deltas in a length-prefixed Base85, so paste a suspect block in Decode mode and the tool flags the exact character where the alphabet breaks, telling you which line lost bytes instead of guessing across the whole hunk.
Hand-build an Ascii85 stream for a PostScript test
You're debugging a PostScript interpreter and need a known stream block to feed it. Type your bytes, encode as Ascii85, tick the wrap checkbox, and copy the delimited output straight into your .ps file. The z-shortcut collapses any zero runs the way a real Adobe encoder would, so the interpreter sees genuine stream input.
Common pitfalls
Decoding an Ascii85-delimited block while still in Z85 mode. The markers are an Ascii85 convention; switch the variant to Ascii85 first, or the bracket characters land outside the Z85 alphabet and error.
Assuming output length stays fixed when input isn't a multiple of 4 bytes. A 5-byte input still produces a partial trailing group, so don't compare lengths assuming clean 4-to-5 ratios.
Trusting a successful decode as proof of the right variant. An Ascii85 string can sometimes decode under Z85 to plausible-looking bytes; verify the round trip re-encodes to the original, not just that decoding ran.
Privacy
The whole pipeline runs as JavaScript in this tab: UTF-8 encoding, Base85 group packing, the z-shortcut, and decoding. Nothing you paste reaches a server and nothing is logged. One caveat: the share URL stores your input and variant in the query string so a link rebuilds the result, which also means it lands in the recipient's server logs. For secrets, copy the output instead of sharing the link.
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.