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.

We always see reserved characters like /, #, & in URLs; but what are the intended usages of less common ones like @, [, ], ,?

I haven't been able to find a good explanation of what these characters are reserved for.

See Wikipedia and section 2.2 here.

share|improve this question

2 Answers

up vote 1 down vote accepted
  • @ and :: for HTTP login data for a host (http://john:password@example.com)
    • : also separates the host from the port (http://example.com:1337)
  • [ and ]: for CURIEs ([db:resource/Albert_Einstein])
  • ,: could be used to delimit (query) parameters
  • ;: see this question: What is the semicolon reserved for in URLs?
share|improve this answer

@ is for adding username and password to the url, so you could do http://username:password@host.com

share|improve this answer
Speculation on the rest: precautionary removal of characters they expected this and other protocols to use later, even without a particular use in mind. The RFC says +, ,, and $ are reserved for query strings, but no use is specified. I've seen brosers that handle these characters without incident. – Stephen Kloder Nov 2 '12 at 18:51

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.