HTML Entity for Right Double Quotation Mark (”)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+201D

What Is the Right Double Quotation Mark Entity?

Right Double Quotation Mark (”) is the General Punctuation character at Unicode U+201D (RIGHT DOUBLE QUOTATION MARK). It is the closing curly (smart) double quote — pair it with “.

Remember
Character     ”
Unicode       U+201D
Hex entity    ”
Decimal       ”
Named entity  ”  (alias ”)
CSS escape    \201D
Not the same  " (") · ’ (’)

All of these produce the same glyph: ”. Prefer ” for readable typography in HTML.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity”HTML markup (best entity default)
Hex entity”HTML markup
Decimal entity”HTML markup
CSS escape\201DStylesheet content
Direct character”UTF-8 HTML text

When to Use Which

SituationUse
Closing curly double quote” (or ”)
Opening curly double quoteUse “ (U+201C)
Attribute values / codePrefer ASCII " or "
Single curly quoteUse ’ (U+2019)
Generated text via CSScontent: "\201D"

Live Preview

Right Double Quotation Mark in common typography contexts.

Quoted sentence “Hello, world!”
Large glyph ”
Named entity ” → ”
vs ASCII / single ”  |  "  |  ’
With entities Hex: ” | Decimal: ” | Named: ”

Complete HTML Example

One page that shows Right Double Quotation Mark with hex, decimal, named, and CSS. Use View Output or open the live editor.

Hex + Decimal + Named + CSS

All four ways to produce ” in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Right Double Quotation Mark (”) in HTML</title>
  <style>
    #point::after {
      content: "\201D";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x201D;</p>
  <p>Using HTML Code: &#8221;</p>
  <p>Using Named Entity: &rdquo;</p>
  <p id="point">Using CSS Entity: </p>
  <p>&ldquo;Hello, world!&rdquo;</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+201D → &#x201D; in HTML. The browser turns it into ”.

2. Decimal: same code point as 8221 → &#8221;. Same result as hex.

3. Named: &rdquo; is the HTML5 name (alias &CloseCurlyDoubleQuote;).

4. CSS: use \201D in content (not an HTML entity). #point::after appends that ” after the paragraph text.

Pitfalls & Tips

Common mistakes when working with Right Double Quotation Mark.

Look-alikes

” ≠ " ≠ ’

Curly double, straight ASCII (&quot;), and curly single (&rsquo;) are different characters.

Pairing

Always open with “

Use &ldquo; (U+201C) for the matching left double quotation mark.

Attributes

Do not use in HTML attributes

For class="…" / href="…", stick to ASCII quotes — curly quotes can break markup.

Alias

&CloseCurlyDoubleQuote; works too

It is an HTML5 alias for the same character as &rdquo;.

CSS vs HTML

Do not mix escapes

\201D belongs in CSS. &rdquo; / &#x201D; / &#8221; belong in HTML.

Semicolon

End references

Always finish with ; — write &rdquo;, not &rdquo.

Browser Support

Right Double Quotation Mark (U+201D) and its entity forms (&rdquo;, &#x201D;, &#8221;, CSS \\201D) are supported in all modern browsers.

✓ Universal support

Right Double Quotation Mark (&rdquo;)

Encode with named, hex, decimal, or CSS escape — or type ” directly in UTF-8 HTML.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+201D / &rdquo; Full support

Bottom line: Prefer &ldquo;…&rdquo; for curly quotes in prose. Use \\201D only inside CSS content.

Key Takeaways

  • Unicode: this symbol is U+201D (decimal 8221).
  • HTML: prefer &rdquo; — or use &#x201D; / &#8221;.
  • CSS: use \201D inside content for generated text.
  • Watch out: ” ≠ &quot; (") — and open with &ldquo;.

One line: U+201D → &rdquo; / &#x201D; / &#8221; / CSS \201D.

Frequently Asked Questions

Use &rdquo; (named), &#x201D; (hex), &#8221; (decimal), or the CSS escape \201D in the content property. You can also type ” directly in UTF-8 HTML.
U+201D (RIGHT DOUBLE QUOTATION MARK). Hex 201D, decimal 8221. It belongs to the General Punctuation block (U+2000–U+206F).
Yes. &rdquo; is the primary HTML5 named entity. &CloseCurlyDoubleQuote; is a supported alias. You can also use &#x201D; or &#8221;.
Use it for closing curly quotes in body copy, pull quotes, and typography that should look polished. Prefer &ldquo;…&rdquo; over straight ASCII quotes for readable prose.
HTML entities (&rdquo;, &#8221;, or &#x201D;) go in markup. The CSS escape \201D is used in stylesheets (usually in the content property of ::before/::after). Both render ”.
ASCII " (U+0022, &quot;) is a straight double quote. &rsquo; (U+2019) is the right single quotation mark. &rdquo; (U+201D) is the right curly double quote.

Did you know?

Right Double Quotation Mark is Unicode U+201D (decimal 8221) — RIGHT DOUBLE QUOTATION MARK. HTML5 provides &rdquo; (alias &CloseCurlyDoubleQuote;). Prefer it for typographic “smart” quotes. Pair it with &ldquo; (U+201C). Do not confuse it with ASCII " (U+0022).

Next: Right Fish Tail

Learn the HTML entity for Right Fish Tail — next in this sequence.

Right Fish Tail tutorial →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful