⚡Online Converter
URL Encoder / Decoder
Encode text to URL-safe format or decode URL-encoded text. Auto-detects input format for seamless conversion.
Input
0 chars•0 words•0 lines
Output
Encode text to URL-safe format or decode URL-encoded text. Auto-detects input format for seamless conversion.
URL encoding replaces unsafe characters with a % prefix followed by two hexadecimal digits representing the character's ASCII value.
Common URL Encoded Characters:
| Character | URL Encoded |
|---|---|
| Space | %20 |
| ! | %21 |
| # | %23 |
| & | %26 |
| = | %3D |
| ? | %3F |
| / | %2F |
| : | %3A |
Note: Spaces can also be encoded as + in query strings, but %20 works universally.
Here are some common URL encoding examples:
| Original | URL Encoded |
|---|---|
| hello world! | hello%20world%21 |
| https://example.com?q=hello world | https%3A%2F%2Fexample.com%3Fq%3Dhello%20world |
| file name.txt | file%20name.txt |
| $100 OFF! | %24100%20OFF%21 |