Results may vary. Always verify critical data.
| Component | Value | Decoded |
|---|
| Character | Encoded | Description |
|---|---|---|
| Space | %20 | Space (also + in form encoding) |
| ! | %21 | Exclamation mark |
| # | %23 | Hash / fragment identifier |
| $ | %24 | Dollar sign |
| % | %25 | Percent sign (the encoding prefix itself) |
| & | %26 | Ampersand — separates query parameters |
| + | %2B | Plus sign (used as space in form encoding) |
| / | %2F | Forward slash — path separator |
| : | %3A | Colon — used in protocol and host |
| ? | %3F | Question mark — starts query string |
| @ | %40 | At sign — used in email and auth URLs |
| = | %3D | Equals sign — separates key from value |
| [ | %5B | Left square bracket |
| ] | %5D | Right square bracket |
| é | %C3%A9 | e with accent (UTF-8, 2 bytes) |
| 日 | %E6%97%A5 | Japanese character (UTF-8, 3 bytes) |