Protocols/MSNP/URL Encode

From NINA Wiki
Revision as of 06:57, 27 July 2009 by AD (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Named because its original use was to encode special characters in URLs, URL encoding enables the use of otherwise non-transmittable characters in the textual protocol stream. Non-encoded characters, except the percent sign, are transmitted as-is, while characters needing encoding (e.g. space, newline, the percent sign itself) are represented as %xx where xx is the hexadecimal value of the octet to be encoded.

See RFC3986:2.1 for more details.