Base64 Encoder / Decoder
Base64 encode plain text, decode Base64 strings, and inspect Base64Url content when you need to read or transform encoded values.
URL encode text, decode percent-encoded values, and clean up query strings, redirect parameters, or copied URLs that are hard to read.
Advertisement
Use this page when a copied URL is full of percent-encoded characters or when you need to safely encode text before placing it in a query string.
It is useful for redirects, API testing, OAuth callback debugging, and any link that includes spaces, symbols, or user-entered values.
Advertisement
It replaces unsafe or reserved characters with percent-encoded sequences so the value can travel safely in a URL.
Decode a URL when you need to read query parameters, redirect values, or copied links from logs and browser tools.
Most of the time you should encode only the query parameter or fragment value, not the entire URL string.
Yes. It is especially useful when building request URLs manually or checking whether a parameter was encoded correctly.
Advertisement
Tool Request