URL Encoding Mode Differences
- !Encode URI Component: The most common encoding method. Escapes all characters except
A-Z a-z 0-9 - _ . ! ~ * ' ( ). Typically used for encoding URL parameter values. Spaces are encoded as%20. - !Encode URI (Full URL): Used to encode an entire URL. Does not escape URL-reserved characters (like
: / ? # & =), preserving URL structure. Spaces are encoded as%20. - !Form Data (Plus): Similar to
application/x-www-form-urlencodedMIME type. The key difference is that spaces are encoded as+instead of%20. Common in HTML form submissions.