QuickFreeTools

Online URL Decode Text

Decode percent-encoded (URL-encoded) text. Uses decodeURIComponent so %20 → space, %2F → /, etc.

Frequently Asked Questions

What encoding is used?
Standard URL percent-encoding. decodeURIComponent handles %XX and %uXXXX forms.
What about plus signs?
Plus (+) is converted to space when decoding, as in application/x-www-form-urlencoded.
Invalid sequences?
If input has invalid % sequences, decoding may throw; we show an error and leave output unchanged.

Related Text Tools