URL Encoding Special Characters: The Complete Reference Table
Reference table of URL-encoded special characters: spaces, &, =, ?, #, /, @, and more. Includes both %XX values and when each character needs encoding.
Published:
Tags: encoding, url, reference
URL Encoding Special Characters: The Complete Reference Table When you put a special character in a URL and things break, the question is always the same: should this character be encoded, what does it encode to, and in which part of the URL does it need encoding? This post is a complete reference — character by character — with notes on where each one matters most. The Most Important Characters Space | Character | Encoded | Notes | |-----------|---------|-------| | Space | | RFC 3986 standard form | | Space | | Form-encoded () only | Space is the most commonly mishandled character. The correct encoding depends on context: Both forms are widely accepted by server parsers. If you are building a REST API URL manually, use . If you are submitting form data, use (or let handle it). --- Query…
All articles · theproductguy.in