Why decode URL-encoded text?
Percent-encoded strings pulled from URLs are hard to read, full of sequences like %20 and %C3. Paste one above and instantly recover the original, human-readable text.
How it works
The decoder runs decodeURIComponent in your browser to convert percent-encoded sequences
back into their original characters. If it hits a malformed % sequence it reports a clear
error rather than producing garbled text. As the inverse of the Text to URL-encoded tool, it
completes the round trip, and everything is processed locally so your data never leaves your
device.