URL decoder

Install app Share web page

URL Decoder is a text utility that restores percent-encoded URLs to their original characters.

decoded URL

URL Decoder Description

Because URLs cannot contain special characters or spaces, these characters are converted to a percent sign (%) and a two-digit hexadecimal code. The URL decoder is responsible for converting these percent-encoded characters back to their original characters.

For example, the percent-encoded string %20 is decoded as a space character, and %3D is converted to an equal sign (=). This process helps the web server restore the received data to its original form and process it correctly.

URL decode is primarily used to interpret data passed from web applications to servers. This is an essential process, especially if you need to restore data contained in query parameters or URLs.

The URL decoding method follows the rules defined in RFC 3986.

example:

encoded URL: https%3A%2F%2Ffreeonlineutility.com%2F

decoded URL: https://freeonlineutility.com/

Related apps