URL Encoder
Encode and decode URL components for query strings, paths, and form values.
Output
About URL encoding
URLs can only contain certain characters safely. URL encoding converts spaces, symbols, and non-ASCII text into percent-encoded values that can be used in query strings and paths.
This tool uses component encoding, which is best for individual query values, path segments, and form values.
Common uses
- Encode query parameter values
- Decode copied URLs for inspection
- Prepare path segments safely
- Debug broken links caused by reserved characters
Notes
Encode full URLs and URL components differently. This tool is intended for components, not for preserving a full URL structure.