Skip to main content

URL Decode

URL Decode converts percent-encoded characters (e.g. %20, %26, %3D) back to their original readable form. Use it to read encoded query parameters from browser logs, debug encoded API requests, or simply make a percent-encoded URL human-readable again.

Characters 0
Words 0
Lines 0

Frequently Asked Questions

What if the URL contains a + sign?

In query strings, + is often used to represent a space (application/x-www-form-urlencoded). This tool treats + as a literal plus sign; %20 is decoded to a space.