"+" is a reserved character in URLs and encodes to "%2B".
What is its special meaning?
"+" is a reserved character in URLs and encodes to "%2B".
What is its special meaning?
It's the URL-encoded value of space. For example, search for "url encoding" (without the quotes) in Google, and then look at the URL. It will include
q=url+encoding
Note the plus where the space was.
Space (which can also be represented as %20
, but +
is more readable).