HTML Entity for Right Double Quotation Mark (”)

What You'll Learn
How to display the Right Double Quotation Mark (”) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+201D (RIGHT DOUBLE QUOTATION MARK) in the General Punctuation block (U+2000–U+206F)—the right (closing) double quotation mark, often called a “smart quote,” used in typography, quoted text, dialogue, and citations.
Render it with ” (named), ”, ”, or CSS \201D. Pair with the opening mark U+201C (“) for balanced quotes. Do not confuse with straight ASCII quotes (").
⚡ Quick Reference — Right Double Quotation Mark
U+201DGeneral Punctuation
”Hexadecimal reference
”Decimal reference
”Most readable option
Name Value
──────────── ──────────
Unicode U+201D
Hex code ”
HTML code ”
Named entity ”
CSS code \201D
Meaning Right (closing) double quotation mark
Related U+201C = left double quotation mark (“)
U+2019 = right single quotation mark (’)Complete HTML Example
A simple example showing the Right Double Quotation Mark (”) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\201D";
}
</style>
</head>
<body>
<p>Symbol using Hexadecimal: ”</p>
<p>Symbol using HTML Code: ”</p>
<p>Symbol using HTML Entity: ”</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Right Double Quotation Mark (”) renders in all modern browsers when the font includes General Punctuation glyphs:
👀 Live Preview
See the Right Double Quotation Mark (”) in typography and content contexts:
“Code is poetry.”
🧠 How It Works
Named HTML Entity
” is the named entity for the Right Double Quotation Mark (right closing double quote). Easy to read in articles, blockquotes, and dialogue markup.
Hexadecimal Code
” uses the Unicode hexadecimal value 201D. The x prefix indicates hexadecimal format.
Decimal HTML Code
” uses the decimal Unicode value 8221 for the same symbol.
CSS Entity
\201D is used in CSS stylesheets in the content property of pseudo-elements like ::after for decorative closing quotes.
Same visual result
All four methods produce ”. Unicode U+201D is in General Punctuation. Previous: Right Double Dash Arrow (⤍).
Use Cases
The Right Double Quotation Mark (”) is commonly used in:
Proper closing double quotes in articles, blogs, and published content.
Mark the end of spoken or quoted dialogue in fiction and scripts.
Close quoted passages in academic, legal, and reference material.
Style pull quotes and blockquote elements with typographic quotes.
Insert closing quotes via ::after in CSS content.
Ensure smart quotes render correctly when straight quotes are typed.
💡 Best Practices
Do
- Prefer
”in HTML for readability - Pair ” with “ (
“) for balanced double quotes - Use smart quotes instead of straight ASCII
"in body copy - Set
<meta charset="utf-8"> - Use fonts that support General Punctuation (U+201D)
- Keep one encoding style per project for consistency
Don’t
- Confuse
”(U+201D) with“(U+201C, opening quote) - Confuse
”with straight"(U+0022) - Use CSS
\201Dinside HTML text nodes - Mix straight and curly quotes inconsistently in the same article
- Use ” as an opening quote at the start of a sentence
Key Takeaways
Four ways to render U+201D in HTML and CSS
” ” ”For CSS, use \201D in the content property
Unicode U+201D — RIGHT DOUBLE QUOTATION MARK
General Punctuation block (U+2000–U+206F) — named entity ”
Previous: Right Double Dash Arrow (⤍) Next: Right Fish Tail
❓ Frequently Asked Questions
” (named), ” (hex), ” (decimal), or \201D in CSS content. All four methods render ” correctly.U+201D (RIGHT DOUBLE QUOTATION MARK). General Punctuation block (U+2000–U+206F). Hex 201D, decimal 8221. The right (closing) double quotation mark.”, ”, ”) go in markup. The CSS escape \201D is used in stylesheets, typically on ::before or ::after. Both produce ”.” is the named HTML entity for U+201D. You can also use ” (decimal) or ” (hex) and \201D in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
