URL Encode

Percent-encode text for URLs

URL Encoding (Percent Encoding)

URL encoding replaces unsafe ASCII characters with a % followed by two hexadecimal digits. This ensures special characters can be safely transmitted in URLs.

Frequently Asked Questions

What characters need URL encoding?

Any character that isn't an unreserved character (A-Z, a-z, 0-9, hyphen, underscore, period, tilde) should be percent-encoded when used in URL components.

Is my data safe?

Yes. All encoding happens in your browser.