Turn percent-encoded URLs and query strings back into readable text.
Ctrl + Enter to run
Decoding turns percent-escapes back into the characters they stand for, which is how you read what a URL actually carried. It is the quickest way to make sense of a redirect chain, an OAuth callback, or an analytics parameter that arrived looking like a wall of `%3A%2F%2F`.
Watch for double encoding. A value that was escaped twice decodes to something still full of percent signs, and decoding again gives the real content — that pattern is usually a bug upstream, where a URL was encoded once when constructed and again when embedded.