Convert-a-Lot knight mascotConvert-a-Lot

URL Decoder

Decode percent-encoded strings back to readable text

How to url decode text

  1. 1.Paste your URL-encoded string in the input panel.
  2. 2.The decoded text appears instantly on the right.
  3. 3.Click Copy to grab the decoded result.
  4. 4.Invalid percent-encoded sequences will show an error.

About This Tool

Decodes URL-encoded (percent-encoded) strings back into readable text using decodeURIComponent(). Useful for debugging URLs, reading query parameters, and inspecting form data.

Frequently Asked Questions

%20 is the URL-encoded representation of a space character. Each %XX sequence represents a byte value in hexadecimal.

In form data (application/x-www-form-urlencoded), + represents a space. Replace + with %20 before decoding, or replace + with spaces in the result.

This tool decodes the entire input. For best results, decode just the query parameter values rather than the full URL structure.

Related Tools