>
B's Code

Base64 / URL Encoder-Decoder

Encode and decode Base64 and URL-encoded strings. Runs entirely in your browser.

[ INPUT ]
[ OUTPUT ]
// waiting for input

About Base64 / URL Encoder-Decoder

Base64 represents binary or text data using 64 URL-neutral ASCII characters; URL (percent) encoding escapes characters that have special meaning in a URL. This tool does both directions for each.

How to use it

  1. Choose Base64 or URL encoding.
  2. Paste your input.
  3. Switch between encode and decode as needed.
  4. Copy the converted output.

Frequently asked questions

Is Base64 encryption?
No. It is a reversible encoding, not encryption. Anyone can decode it, so never use it to protect secrets.
What about URL-safe Base64?
Standard Base64 uses plus and slash, which have meaning in URLs. URL-safe Base64 substitutes minus and underscore. Check which variant your target system expects.
Does it handle Unicode?
Yes. Text is treated as UTF-8 before encoding.