URL Decoder Tool for URL Decoding Online
Convert url encoded string to plain text easily.
Give Rating
URL Decoder Online
How to Decode URL String?
- Enter the encoded URLs in input text area.
- Click Show Output button to generated decoded URLs
Uses
- parsing encoded URLs
Examples
Input:
https%3A%2F%2Fwww.textcompare.org%2Ftext%2Fencode-url.html
Output:
https://www.textcompare.org/text/encode-url.html
How to decode URL in Javascript?
you can decode a URL string using encodeURIComponent
function.
decodeURIComponent('https%3A%2F%2Fwww.textcompare.org%2Ftext%2Fencode-url.html')