🔗 URL Encoder / Decoder
Encode or decode URLs and query parameters. Convert special characters to percent-encoded format.
Online URL Encoder and Decoder
Convert special characters to percent-encoded format or decode percent-encoded URLs back to readable text.
Frequently Asked Questions
What characters need URL encoding?
Any character not in the unreserved set (A-Z, a-z, 0-9, - _ . ~) should be percent-encoded.
encodeURI vs encodeURIComponent?
encodeURI skips / : ? & = # for full URLs. encodeURIComponent encodes all special characters for query values.
Can I decode a full URL?
Yes. Paste the percent-encoded URL and click Decode to see the readable version.