DT
DevToolBox

URL Encoder / Decoder

Encode special characters for safe use in URLs, or decode percent-encoded strings back to readable text.

Ad Space (url-top)
Type:
Ad Space (url-bottom)

About URL Encoding

URL encoding (percent-encoding) replaces unsafe characters with a percent sign followed by two hex digits. This is required for characters like spaces, ampersands, and non-ASCII characters in URLs.

This tool supports both encodeURIComponent (encodes everything except unreserved chars) and encodeURI (preserves URL structure characters like : / ? # @ etc).