Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

"+" is a reserved character in URLs and encodes to "%2B".

What is its special meaning?

share|improve this question

4 Answers

up vote 11 down vote accepted

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.

share|improve this answer
Of course. I've used "+" like that before, I just had assumed that there was some hidden technical usage :) – ctford Dec 11 '09 at 17:18

Space (which can also be represented as %20, but + is more readable).

share|improve this answer

hiii... In ISO-Latin charecter set + is a charecter which, can be used for concatenation or addition. But when we use it in url it represents space. Thus it has diffrent meaning in url. It has diffrent meaning in url because ,it is reserved charecter in url , used for space.

share|improve this answer

It's a space. Need 15 characters...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.