URL Encoder
Encode URLs and query parameter values, or decode percent-encoded strings back to readable text.
URL Encoder workspace
URL or text input
Encoded output
How to use
- 1 Enter the URL or text to encode.
- 2 Run URL Encode to convert it into a URL-safe percent-encoded format.
- 3 Check the result, then copy it.
Common use cases
- Encode query parameter values with a URL encoder
- Convert Korean search terms for URLs
- Handle spaces and special characters safely
Frequently asked questions
What values should I encode with a URL encoder?
It converts text that is hard to place directly in a URL, such as Korean text, spaces, and special characters, into a safe encoded string.
How are spaces handled?
Spaces are represented as %20, matching the default encodeURIComponent behavior.
Should I paste a full URL or a query value?
It is especially useful for text that must be safely passed as a query parameter value. If you paste a full URL, separators may be encoded too.