URL Encoder / Decoder

Encode and decode URLs instantly - Free URL encoder/decoder tool

URL Encoding

URL encoding converts characters into a format that can be transmitted over the internet. Special characters are replaced with % followed by hex digits.

Example: "hello world" becomes "hello%20world"

URL Decoding

URL decoding converts encoded URLs back to their original format. It replaces %XX codes with their corresponding characters.

Example: "hello%20world" becomes "hello world"