URL decoder
Turn percent-encoded text such as %20 and %2F back into readable characters.
Use component mode (decodeURIComponent) to decode everything, or
full-URL mode (decodeURI) to keep reserved URL characters intact.
It all happens in your browser with built-in functions — nothing is uploaded. To encode again, use the URL encoder.