APOSTROPHE vs RIGHT SINGLE QUOTATION MARK
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="https://unicodefyi.com/iframe/entity//" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://unicodefyi.com/entity//
Add a dynamic SVG badge to your README or docs.
[](https://unicodefyi.com/entity//)
Use the native HTML custom element.
copied1 = false, 2000)"
:class="copied1 ? 'border-green-400 bg-green-50 dark:bg-green-950' : ''">
'
APOSTROPHE
U+0027
View details →
copied2 = false, 2000)"
:class="copied2 ? 'border-green-400 bg-green-50 dark:bg-green-950' : ''">
’
RIGHT SINGLE QUOTATION MARK
U+2019
View details →
VS
Property Comparison
| Property | ' U+0027 | ’ U+2019 |
|---|---|---|
| Name | APOSTROPHE | RIGHT SINGLE QUOTATION MARK |
| Block | Basic Latin | General Punctuation |
| Script | Zyyy | Zyyy |
| Category | Other Punctuation (Po) | Final Punctuation (Pf) |
| Bidirectional | ON | ON |
Encoding Comparison
| Format | U+0027 | U+2019 |
|---|---|---|
| unicode | U+0027 | U+2019 |
| decimal | 39 | 8217 |
| htmldecimal | ' | ’ |
| htmlhex | ' | ’ |
| css | \0027 | \2019 |
| javascript | \u{27} | \u{2019} |
| python | \u0027 | \u2019 |
| java | \u0027 | \u2019 |
| go | \u0027 | \u2019 |
| ruby | \u{27} | \u{2019} |
| rust | \u{27} | \u{2019} |
| ccpp | \u0027 | \u2019 |
| urlencoded | %27 | %E2%80%99 |
| utf8bytes | 27 | e2 80 99 |
| utf16bebytes | 00 27 | 20 19 |
| utf32bebytes | 00 00 00 27 | 00 00 20 19 |
| htmlentity | ' | ’ |
How to Distinguish
Both characters use the Zyyy script but are in different blocks: APOSTROPHE in Basic Latin and RIGHT SINGLE QUOTATION MARK in General Punctuation.
Tip: Paste the character into a hex editor or use
charCodeAt()
in JavaScript to check the actual codepoint.