URL-encoding
•
Browsers use an encoding when
sending query strings that include
special characters.
–
Most nonalphanumeric characters are
encoded as a
‘%’
followed by 2 ASCII
encoded hex digits.
–
‘=‘
(which is hex 3D) becomes
“%3D”
–
‘&’
becomes
“%26”
47