URL Encoder/Decoder

Encode and decode URLs and query parameters online

Frequently Asked Questions

What is URL encoding?

URL encoding (percent-encoding) replaces unsafe characters with a % followed by their hex code. For example, a space becomes %20 and & becomes %26.

When do I need to URL encode?

URL encode when including special characters in query parameters, form data, or any part of a URL that might contain spaces, ampersands, or other reserved characters.