URL Encoder
Convert any text into its percent-encoded form so it can travel safely inside a URL or query string.
How to use
- Paste the text or parameter value.
- The encoded result appears live.
- Copy it into your URL.
Examples
Query value
Input: a b&c=d
Output: a%20b%26c%3Dd
Frequently asked questions
When do I need URL encoding?
Whenever a value contains characters with special meaning in URLs (spaces, &, =, ?, #, /) or non-ASCII characters.
Does it encode the whole URL?
This tool encodes a value, not a full URL. Encoding a complete URL would break its structure (://, /, ?).