HTML Entity for Left Double Quotation Mark (“)

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