Text Decoder

Decrypt encoded data instantly. Supports Base64, URL, Hex, and more.

Encoded Data
0 Chars
Plain Text
0 Chars

Decrypt

Convert unreadable data back to plain text.

Debug

Useful for analyzing API responses and URL params.

Private

Processing happens locally. No data sent to servers.

Supported Formats

Base64 Decode

Converts Base64 strings (e.g., `SGVsbG8=`) back to their original text or binary form.

URL Decode

Decodes URLs by replacing `%20` with spaces and other percent-encoded characters.

Hex Decode

Translates hexadecimal values (e.g., `48 65 6c 6c 6f`) back into readable ASCII text.

Binary Decode

Converts streams of 0s and 1s back into standard text characters.

Frequently Asked Questions

How do I decode Base64?

Select "Base64" from the mode options, paste your encoded string into the input box, and click "Decode".

Why does decoding fail?

Ensure your input doesn't have extra spaces or missing characters. Base64 strings must have a length divisible by 4 (padding with `=` if needed).

Is it safe?

Yes. We use your browser's built-in functions to decode text. No data is transmitted to us.