Quickly decode or encode URLs online with our simple and convenient conversion tool. Try it now!
// Sample URL address
var url = 'https://test.pl/test';
// Decoding the URL address
var decoded = decodeURIComponent(url);
// Encoding the decoded URL address again
var encodedAgain = encodeURIComponent(decoded);