Seemingly simple, but I cannot find anything relevant on the web.
What is the correct html code for an apostrophe? Is it a ’ ?
|
|
If you are looking for single quote, it is
|
|||||||||||||
|
|
A List Apart has a nice reference on characters and typography in HTML. According to that article, the correct HTML entity for the apostrophe is |
|||||
|
|
It's "'", without the quotes of course. As noted by msanders, this is actually XML and XHTML but not defined in HTML4, so I guess use the &39; in that case. I stand corrected. |
|||||||||
|
|
Firstly, it would appear that ' should be avoided - The curse of ' Secondly, if there is ever any chance that you're going to generate markup to be returned via AJAX calls, you should avoid the entity names (As not all of the HTML entities are valid in XML) and use the &#XXXX; syntax instead. Failure to do so may result in the markup being considered as invalid XML. The entity that is most likely to be affected by this is , which should be replaced by   |
|||
|
|
|
Here is a great reference for HTML Ascii codes: http://www.ascii.cl/htmlcodes.htm The code you are looking for is: ' |
|||||||
|
|
Depends on which apostrophe you are talking about: there’s |
|||
|
|
|
As far as I know it is |
|||
|
|
|
Use Edit: msanders points out that |
||||
|
|
Note that Check: http://www.w3.org/TR/html5/syntax.html#named-character-references |
|||
|
|