🌐

URL Encoder

Make text safe for URLs: percent-encode query parameters or entire addresses, and decode encoded URLs back to human-readable form instantly.

FAQ

When do I need URL encoding?

Whenever text goes into a URL — spaces become %20, & becomes %26, etc. — so special characters don't break the address.

Component vs full URL mode?

Component mode encodes everything (for query parameter values); full-URL mode preserves ://, ? and & structure.

Can it decode %2F style strings?

Yes — paste any percent-encoded string and get the readable original.

Related tools