URL Encoder
URL encode and decode
📖 How to Use Click to view detailed usage instructions
Collapse Expand
📖 How to Use
Click to view detailed usage instructions
URL Encode/Decode
Features
URL encoding converts special characters in URLs to %xx format, ensuring URLs can be correctly transmitted and parsed.
Use Cases
- URL parameter handling
- Query string encoding
- API calls
- Form data submission
- Redirect URL processing
How to Use
- Enter URL to encode or decode
- Click "URL Encode" or "URL Decode" button
- View encoded/decoded result
- Copy the result
Examples
| Original | Encoded |
|---|---|
| Space | %20 |
| Chinese | %E4%B8%AD%E6%96%87 |
| ! | %21 |
| # | %23 |
URL encoding converts special characters into URL-safe format. For example, spaces are encoded as %20, and Chinese characters are encoded in percent format.