Skip to main content

Url Decoder

Decode Urlencoded String to normal text

Url Decoder

URL Decoder

How it works

This tool uses JavaScript functions decodeURIComponent to safely decode Url encoded text to a plain text

const encoded = "plain%20text";
const decoded = decodeURIComponent(text);
console.log(decoded); // "plain text"

If any error occur, the tool will show error message