🔗 URL Encoder/Decoder

Encode URLs for safe transmission and decode encoded URLs back to readable format

📝 Input URL
0 characters
📤 Output Result
Your processed URL will appear here...
ℹ️ URL Encoding Information

🔒 What is URL Encoding?

URL encoding converts characters into a format that can be transmitted over the Internet. Special characters are replaced with a percent sign followed by two hexadecimal digits.

🎯 When to Use

Use URL encoding when URLs contain special characters, spaces, or non-ASCII characters that need to be safely transmitted in web requests.

⚡ Common Characters

Space → %20, & → %26, ? → %3F, # → %23, + → %2B, = → %3D, % → %25

🌐 Unicode Support

Our tool supports full Unicode encoding/decoding, allowing you to work with international characters and emojis in URLs.

📚 Examples
Original URL:
https://example.com/search?q=hello world&category=news
Encoded URL:
https://example.com/search?q=hello%20world&category=news
Original URL with Special Characters:
https://example.com/path with spaces/file name.html?param=value&other=100%
Encoded URL:
https://example.com/path%20with%20spaces/file%20name.html?param=value&other=100%25
Unicode Example:
https://example.com/search?q=café&location=São Paulo
Encoded URL:
https://example.com/search?q=caf%C3%A9&location=S%C3%A3o%20Paulo