URL Encoder/Decoder
Encode and decode URLs in real-time with URL component breakdown
Original URL / Text
0 characters0 bytes
Encoded Result
0 characters0% size change
Quick Examples
Try encoding these:
Try decoding these:
💡Understanding URL Encoding
URI Component Encoding
Encodes all special characters including / ? & = #. Use this for encoding values that will be part of query parameters.
Input: hello world
Output: hello%20world
Output: hello%20world
Full URI Encoding
Preserves URL structure characters like / ? & = : #. Use this when encoding a complete URL.
Input: https://example.com/path?q=hello world
Output: https://example.com/path?q=hello%20world
Output: https://example.com/path?q=hello%20world