HTML Entity for Heavy Single Comma Quotation Mark Ornament (❜)

What You'll Learn
How to display the Heavy Single Comma Quotation Mark Ornament (❜) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+275C (HEAVY SINGLE COMMA QUOTATION MARK ORNAMENT) in the Dingbats block (U+2700–U+27BF). It is a decorative closing single-quote style mark—ideal for typography, styled quotations, pull quotes, and ornamental punctuation in web design.
Render it with ❜, ❜, or CSS escape \275C. There is no named HTML entity. Pair with U+275B (❛, opening turned comma ornament) for balanced quotes. Do not confuse ❜ with curly quotes U+2018 / U+2019 (‘ ’) or the ‘ / ’ named entities.
⚡ Quick Reference — Single Quote Ornament
U+275CDingbats block (closing)
❜Hexadecimal reference
❜Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+275C
Hex code ❜
HTML code ❜
Named entity (none)
CSS code \275C
Role Closing single quote ornament
Pair with U+275B = opening (❛)
Curly quotes U+2018 / U+2019 (‘ ’)Complete HTML Example
This example demonstrates the Heavy Single Comma Quotation Mark Ornament (❜) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\275C";
}
</style>
</head>
<body>
<p>Ornament using Hexadecimal: ❜</p>
<p>Ornament using HTML Code: ❜</p>
<p id="point">Ornament using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Heavy Single Comma Quotation Mark Ornament (❜) is widely supported in modern browsers when the font includes Dingbats punctuation:
👀 Live Preview
Heavy Single Comma Quotation Mark Ornament (❜) as a closing quote, paired with the opening ornament (❛):
🧠 How It Works
Hexadecimal Code
❜ uses the Unicode hexadecimal value 275C to display the closing single quote ornament. The x prefix indicates hexadecimal format.
Decimal HTML Code
❜ uses the decimal Unicode value 10076 to display the same character.
CSS Entity
\275C is used in CSS stylesheets, particularly in content on ::after for decorative closing quotes on blockquotes and cards.
Same visual result
All three methods produce ❜. Unicode U+275C is in the Dingbats block. Next: Opening Ornament (❛).
Use Cases
The Heavy Single Comma Quotation Mark Ornament (❜) is commonly used in:
Ornamental punctuation in headings, pull quotes, and styled paragraphs.
Decorative closing quote for blockquotes, testimonials, and callouts.
Article intros, sidebars, and magazine-style layouts with distinctive punctuation.
Visual interest in hero sections, banners, and typography-focused layouts.
Bullet-like ornaments or decorative labels in navigation and lists.
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+275B) for balanced ornament quotes
- Use
content: "\275C"on::afterfor 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+275C (❜) with U+275B (❛, opening) or ’
- Expect a named HTML entity for U+275C
- Use CSS
\275Cin HTML text nodes - Overuse ornamental punctuation in long body copy
Key Takeaways
Two HTML numeric references plus CSS insert U+275C
❜ ❜For CSS, use \275C in the content property (often ::after)
Unicode U+275C — closing single quote ornament (❜)
Pair with opening U+275B (❛) for balanced styling
Next: Opening Ornament (❛)
❓ Frequently Asked Questions
❜ (hex), ❜ (decimal), or \275C in CSS content. There is no named entity. All three methods render the closing single quote ornament (❜) correctly.U+275C (HEAVY SINGLE COMMA QUOTATION MARK ORNAMENT). Dingbats block. Hex 275C, decimal 10076. The symbol (❜) is a decorative closing single-quote style, often used with ❛ for opening.❜ or ❜) go in markup. The CSS escape \275C is used in stylesheets, typically on ::before or ::after. Both produce ❜.❜) or decimal (❜) codes, which is standard for decorative characters in the Dingbats block.Explore More HTML Entities!
Discover 1500+ HTML character references — symbols, punctuation, and more.
8 people found this page helpful
