Details
URL encoding, also known as URI encoding or percent-encoding, converts characters into a format that only contains ASCII characters compatible with the HTTP protocol.
This tool decodes a percent-encoded URL string back into readable text. It reverses the encoding process,
turning sequences such as %20 and %2F back into their original characters like spaces and slashes.
Common encoded sequences that are decoded are:
%20is decoded to aSpace%2Bis decoded to a+sign%2Fis decoded to/%3Fis decoded to?
Looking to encode text into a URL safe string instead? Use the URL Encoder.
