URL Encoder
Percent-encodes special characters so text is safe to use in a URL. Runs entirely in your browser — nothing is sent to a server.
Percent-encodes special characters so text is safe to use in a URL. Runs entirely in your browser — nothing is sent to a server.
Use cases
- Encoding a query parameter value before adding it to a URL
- Safely embedding a search term with spaces or symbols in a link
Examples
A phrase with spaces and symbols
hello world & friends?
hello%20world%20%26%20friends%3F
FAQ
Is my data sent to a server?
No — this tool runs entirely in your browser.