Simple online tools for developers, networking, text and conversions.

Developer Tools

Base85 Decode

Decode Base85 text back into readable UTF-8 output.

Tool

Use this Base85 decoder to convert ASCII85-compatible input back into plain text. It is useful for debugging compact encoded payloads, reversing encoded strings, and working with developer data formats that use Base85.

About this tool

Use this Base85 decoder to convert ASCII85-compatible input back into plain text. It is useful for debugging compact encoded payloads, reversing encoded strings, and working with developer data formats that use Base85.

Use base85 decode when you need a fast browser-based result without extra setup. It works well for quick checks, one-off tasks, and routine formatting or calculation work.

Learn more

Why use this tool

How to use

  1. Paste the Base85 input into the input box.
  2. Run the tool to decode it.
  3. Review the readable text output.
  4. Copy the result for debugging, notes, or reuse.

Examples

Example

Input

<~87cURD]j7BEbo7~>

Output

Hello world

Decodes ASCII85-style input back into readable text.

Common errors

The input is not valid Base85 or is truncated.

Fix: Check that the source is really Base85 and was copied fully.

The output is unreadable because the bytes do not represent UTF-8 text.

Fix: Check whether the source data is text-based or arbitrary binary content.

The user expects encoding rather than decoding.

Fix: Use Base85 Encode when the source is plain text.

FAQ

Can it decode ASCII85 input with markers?

Yes. It can handle common ASCII85-style input and ignores optional wrapper markers like <~ and ~>.

Does it support compressed z blocks?

Yes. It supports the common ASCII85 z shorthand for four zero bytes.

What is this useful for?

It is useful for reversing compact payloads, debugging encoded data, and checking ASCII85-compatible strings.

Is this Base85 decode tool free to use?

Yes. It works online in the browser.

When should I use Base85 Decode instead of Base64 Decode?

Use Base85 Decode when the input is ASCII85-compatible Base85 text. Use Base64 Decode when the source belongs to the Base64 family.

Use cases

Related tools