About the URL Encoder
The URL Encoder applies encodeURIComponent semantics, escaping characters that have structural meaning in a query value or path segment. It is intended for one component, not an already assembled full address.
How to use the URL Encoder
- Enter a raw parameter value or path segment.
- Encode reserved and non-ASCII characters.
- Insert the result in the correct URL position.
Practical tips
- Encode values before joining them with & and = in a query.
- Do not repeatedly encode an already percent-encoded value.