URL Encoder/Decoder
Encode and decode URLs and URL components with different encoding options
Full URLComponentsQuery Params
URL Encoder/Decoder
Encode and decode URLs and URL components with support for different encoding types
Common Character Encodings
| Character | Encoded | Description |
|---|---|---|
| %20 | Space | |
| ! | %21 | Exclamation |
| " | %22 | Double quote |
| # | %23 | Hash |
| $ | %24 | Dollar |
| % | %25 | Percent |
| & | %26 | Ampersand |
| ' | %27 | Single quote |
| ( | %28 | Left parenthesis |
| ) | %29 | Right parenthesis |
| * | %2A | Asterisk |
| + | %2B | Plus |
| , | %2C | Comma |
| / | %2F | Slash |
| : | %3A | Colon |
| ; | %3B | Semicolon |
| < | %3C | Less than |
| = | %3D | Equals |
| > | %3E | Greater than |
| ? | %3F | Question mark |
| @ | %40 | At sign |
| [ | %5B | Left bracket |
| \ | %5C | Backslash |
| ] | %5D | Right bracket |
| ^ | %5E | Caret |
| { | %7B | Left brace |
| | | %7C | Pipe |
| } | %7D | Right brace |
| ~ | %7E | Tilde |
Options
About URL Encoding
URL encoding (percent-encoding) converts characters into a format that can be transmitted over the Internet. It's used for:
- • Encoding special characters in URLs
- • Handling spaces and non-ASCII characters
- • Query string parameters
- • Form data submission
- • API requests with special characters
Different encoding types serve different purposes: Full URL encoding for complete URLs, component encoding for path segments, and parameter encoding for query strings.

