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.
Percent-encode text for URLs
URL encoding replaces unsafe ASCII characters with a % followed by two hexadecimal digits. This ensures special characters can be safely transmitted in URLs.
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.
Yes. All encoding happens in your browser.