URL Encoder

Encode and decode URLs.

Plain Text / URL
Encoded Output
Encoded URL
Decoded Output

Frequently Asked Questions

What's the difference between encodeURI and encodeURIComponent?+
This tool uses encodeURIComponent, which escapes all special characters including those used to separate URL parts (like &, =, ?). It's the right choice for encoding query parameter values.
Is my data sent to a server?+
No. Encoding and decoding happen entirely in your browser using JavaScript.