URL Encoder / Decoder
Encode or decode URLs safely using encodeURI / encodeURIComponent and decodeURI / decodeURIComponent.
Output
Quick interpretation
URL encoding helps keep URLs valid and prevents broken query strings when sharing or building links.
- Encode before putting text into query parameters
- Decode to inspect tracking links and parameters
- Avoid double-encoding (turn into %2520)