URL Encoder/Decoder

Encode and decode URLs and query parameters with percent-encoding

Input URL/Text

Output Result

Common URL Examples

Search Query
https://google.com/search?q=hello world
Multiple Parameters
https://api.example.com/data?name=John&age=25
Special Characters
hello@example.com → hello%40example.com
Spaces in Text
hello world → hello%20world

How to Use

URL Encoder/Decoder helps you encode special characters in URLs using percent-encoding and decode encoded URLs back to their original form. Simply paste your URL or text in the input area and click "Encode URL" to convert special characters to percent-encoding, or "Decode URL" to convert percent-encoded text back to readable format.

Common Use Cases: Creating properly formatted URLs for web requests, encoding query parameters, decoding URLs from web logs, and handling special characters in URLs.

Tips: Use the quick examples to test common scenarios. Spaces become %20, @ becomes %40, and & becomes %26. This tool is essential for web developers working with APIs and URLs.