url-encode-decodedevencode
URL encode/decode
Encode/decode URL components safely.
Inputs
Output
(no output yet)
Explanation
Encode reserved characters for safe use in URLs, or decode percent-encoded strings back to readable text.
Use it when you need a fast, offline conversion/validation step during development or debugging.
FAQ
What’s the difference between encodeURI and encodeURIComponent?
encodeURIComponent encodes more characters and is safer for individual query params. This tool is meant for the common encode/decode workflows.