URL Encode/Decode

Encode special characters for URLs or decode percent-encoded strings.

About URL Encode/Decode

URL encoding (also known as percent-encoding) replaces special characters with a percent sign followed by their hexadecimal representation. This is required when including special characters in URLs, query parameters, and form data. This tool uses JavaScript's encodeURIComponent and decodeURIComponent functions to handle the full range of Unicode characters safely.