I inbrowser.sh

URL Decode

URL decoding turns percent escapes back into readable characters, which helps when inspecting redirects, logs and copied query strings.

Runs in your browserNo uploadFree · no signup

Direct answer

URL Decode is a browser-side workflow connected to URL Encode. It converts Percent-encoded text to Decoded text without requiring an upload.

Percent-encoded text
hello%20world%3Fx%3D1%26y%3D2
Decoded text
hello world?x=1&y=2

When to use it

  • Paste the encoded value.
  • Choose Decode in the URL Encoder tool.
  • Review and copy the decoded text.

Use the interactive tool

Open URL Encode to run the workflow locally in your browser. This page is static HTML for search, examples and quick reference.

FAQ

Why did decoding fail?

Malformed percent escapes, such as a lone %, can make decoding fail.

Does this decode plus signs as spaces?

The main tool follows URL component decoding; form-encoded plus handling depends on the source format.