HTML Entity for Heavy Double Comma Quotation Mark Ornament (❞)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+275E

What You'll Learn

How to display the Heavy Double Comma Quotation Mark Ornament (❞) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+275E (HEAVY DOUBLE COMMA QUOTATION MARK ORNAMENT) in the Dingbats block (U+2700–U+27BF). It is a decorative closing double-quote style character—ideal for blockquotes, pull quotes, testimonials, and typographic styling.

Render it with ❞, ❞, or CSS escape \275E. There is no named HTML entity. Pair with U+275D (❝, opening turned comma ornament) for balanced quotes. Do not confuse ❞ with curly quotes U+201C / U+201D (“ ”) or the “ / ” named entities.

⚡ Quick Reference — Closing Quote Ornament

Unicode U+275E

Dingbats block (closing)

Hex Code ❞

Hexadecimal reference

HTML Code ❞

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+275E
Hex code       ❞
HTML code      ❞
Named entity   (none)
CSS code       \275E
Role           Closing quote ornament
Pair with      U+275D = opening (❝)
Curly quotes   U+201C / U+201D (“ ”)
1

Complete HTML Example

This example demonstrates the closing quote ornament (❞) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\275E";
  }
 </style>
</head>
<body>
<p>Closing ornament using Hexadecimal: &#x275E;</p>
<p>Closing ornament using HTML Code: &#10078;</p>
<p id="point">Closing ornament using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Heavy Double Comma Quotation Mark Ornament (❞) is widely supported in modern browsers when the font includes Dingbats punctuation:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

Heavy Double Comma Quotation Mark Ornament (❞) as a closing quote, paired with the opening ornament (❝):

Pull quote ❝ Design is not just what it looks like. ❞
Testimonial ❝ Best course I have taken. ❞
Large closing
Ornament vs curly ❝❞   “”
Numeric refs &#x275E; &#10078; \275E

🧠 How It Works

1

Hexadecimal Code

&#x275E; uses the Unicode hexadecimal value 275E to display the closing quote ornament. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#10078; uses the decimal Unicode value 10078 to display the same character.

HTML markup
3

CSS Entity

\275E is used in CSS stylesheets, particularly in content on ::after for decorative closing quotes on blockquotes and cards.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+275E is in the Dingbats block. Next: Opening Ornament (❝).

Use Cases

The Heavy Double Comma Quotation Mark Ornament (❞) is commonly used in:

❞ Blockquotes

Decorative closing quote for blockquotes, pull quotes, and highlighted excerpts.

📝 Editorial

Styled quotation marks in articles, magazines, and editorial layouts.

💬 Testimonials

Closing quote for customer testimonials, review snippets, and quote cards.

📖 Literature

Decorative quote styling in book excerpts, epigraphs, and literary content.

🎨 Branding

Custom quote styling in headers, cards, or brand assets with ornamental quotes.

🔨 CSS quotes

content on ::after to style closing quotes without extra HTML.

💡 Best Practices

Do

  • Use <blockquote> or <q> for quoted content; add ❞ for visual styling
  • Pair ❞ (closing) with ❝ (opening, U+275D) for balanced ornament quotes
  • Use content: "\275E" on ::after for pull-quote cards
  • Declare UTF-8 with <meta charset="utf-8">
  • Test ornamental glyph rendering in serif and system fonts
  • Keep one numeric style (hex or decimal) per project

Don’t

  • Replace semantic quotation markup with ornaments alone
  • Confuse U+275E (❞) with U+275D (❝, opening) or &rdquo;
  • Expect a named HTML entity for U+275E
  • Use CSS \275E in HTML text nodes
  • Use ornamental quotes where plain curly quotes are required for accessibility

Key Takeaways

1

Two HTML numeric references plus CSS insert U+275E

&#x275E; &#10078;
2

For CSS, use \275E in the content property (often ::after)

3

Unicode U+275E — closing quote ornament (❞)

4

Pair with opening U+275D (❝) for balanced styling

❓ Frequently Asked Questions

Use &#x275E; (hex), &#10078; (decimal), or \275E in CSS content. There is no named entity. All three methods render the closing quote ornament (❞) correctly.
U+275E (HEAVY DOUBLE COMMA QUOTATION MARK ORNAMENT). Dingbats block. Hex 275E, decimal 10078. The symbol (❞) is a decorative closing double-quote style, often used with ❝ for opening.
For decorative blockquotes and pull quotes, typographic styling and editorial design, testimonials and review highlights, and any content where a distinct closing ornamental quotation mark is desired.
HTML references (&#10078; or &#x275E;) go in markup. The CSS escape \275E is used in stylesheets, typically on ::before or ::after. Both produce ❞.
Named entities cover common ASCII, Latin-1, and widely used symbols. U+275E uses numeric hex (&#x275E;) or decimal (&#10078;) codes, which is standard for decorative characters in the Dingbats block.

Explore More HTML Entities!

Discover 1500+ HTML character references — symbols, math, and more.

All HTML Entities →

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