How to use URL Encoder/Decoder
- 1Paste a URL, path, query value, or text fragment into the converter.
- 2Choose component, full URL, or form encoding when needed.
- 3Copy the encoded or decoded result, parsed fields, or built query string.
Encode and decode URLs, parse components, and build query strings with ease
| Character | URL Encoded | Form Encoded |
|---|---|---|
| Space | %20 | + |
| & | %26 | %26 |
| = | %3D | %3D |
| ? | %3F | %3F |
| # | %23 | %23 |
| @ | %40 | %40 |
| : | %3A | %3A |
| / | %2F | %2F |
Safely convert reserved characters into percent-encoded values or decode an existing URL into readable text. Advanced views help parse URL components and construct query strings without manually managing separators and escaping.
Encode individual parameter values when preserving separators such as ?, &, =, and /. Full-URL encoding is appropriate only when the entire URL is itself a value inside another context.
HTML form encoding commonly represents spaces as +, while standard percent encoding represents them as %20.