up vote 13 down vote favorite
4
share [g+] share [fb]

Seemingly simple, but I cannot find anything relevant on the web.

What is the correct html code for an apostrophe? Is it a ’ ?

link|improve this question

1  
8217 is for a right single quotation mark. – Tom Anderson Jan 7 '09 at 9:36
It is a ' Just type it! – Josh Stodola Oct 6 '09 at 23:23
2  
@Josh Stodola what if its in JavaScript? It will close the tag :) – Chalkey Nov 12 '09 at 14:20
you can type \' :-) but use ’ – Aziz Jun 3 '10 at 13:39
feedback

9 Answers

up vote 15 down vote accepted

If you are looking for single quote, it is

'
link|improve this answer
feedback

A nice reference to characters, typography and HTML is found at A list Apart. According to that article, the correct HTML to apostrophe is ’.

link|improve this answer
You can also use ’ or ’ in place of ’. I happen to find the mnemonic version a little easier to read. The hex version is easier for looking up in Unicode code charts. – Ted Hopp Jun 27 '11 at 22:31
feedback

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.

link|improve this answer
3  
' is not a valid HTML 4 entity. It is part of XML and so is part of XHTML 1.0. See: w3.org/TR/xhtml1/#C_16 – msanders Jan 7 '09 at 10:53
4  
' doesn't work in IE – Ed Griebel Feb 19 '10 at 19:51
feedback

Here is a great reference for HTML Ascii codes:

http://www.ascii.cl/htmlcodes.htm

The code you are looking for is: '

link|improve this answer
Strangely enough, that list doesn't have ' ??? – paxdiablo Jan 7 '09 at 10:50
1  
That's because ' is not part of HTML 4 (although is part of XHTML - see w3.org/TR/xhtml1/#C_16 ) – msanders Jan 7 '09 at 11:15
feedback

Depends on which apostrophe you are talking about: there’s ', ‘, ’ and probably numerous other ones, depending on the context and the language you’re intending to write. And with a declared character encoding of e.g. UTF-8 you can also write them directly into your HTML: ', , .

link|improve this answer
feedback

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  

link|improve this answer
feedback

' in decimal.

%27 in hex.

link|improve this answer
feedback

As far as I know it is ' but it seems yours works as well

See http://w3schools.com/tags/ref_ascii.asp

link|improve this answer
feedback

Use ' for a straight apostrophe. This tends to be more readable than the numeric ' (if others are ever likely to read the HTML directly).

Edit: msanders points out that ' isn't valid HTML4, which I didn't know, so follow most other answers and use '.

link|improve this answer
' is not a valid HTML 4 entity. It is part of XML and so is part of XHTML 1.0. See: w3.org/TR/xhtml1/#C_16 – msanders Jan 7 '09 at 10:54
feedback

Your Answer

 
or
required, but never shown

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