HTML Entity for Heavy Single Turned Comma Quotation Mark Ornament (❛)

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

What You'll Learn

How to display the Heavy Single Turned Comma Quotation Mark Ornament (❛) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+275B (HEAVY SINGLE TURNED COMMA QUOTATION MARK ORNAMENT) in the Dingbats block (U+2700–U+27BF). It is a decorative opening single-quote style mark—ideal for typography, styled quotations, pull quotes, and ornamental punctuation in web design.

Render it with ❛, ❛, or CSS escape \275B. There is no named HTML entity. Pair with U+275C (❜, closing comma ornament) for balanced quotes. Do not confuse ❛ with curly quotes U+2018 / U+2019 (‘ ’) or the ‘ / ’ named entities.

⚡ Quick Reference — Opening Single Quote Ornament

Unicode U+275B

Dingbats block (opening)

Hex Code ❛

Hexadecimal reference

HTML Code ❛

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+275B
Hex code       ❛
HTML code      ❛
Named entity   (none)
CSS code       \275B
Role           Opening single quote ornament
Pair with      U+275C = closing (❜)
Curly quotes   U+2018 / U+2019 (‘ ’)
1

Complete HTML Example

This example demonstrates the Heavy Single Turned Comma Quotation Mark Ornament (❛) using hexadecimal code, decimal HTML code, and a CSS content escape on ::before:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0000";
  }
 </style>
</head>
<body>
<p>Opening ornament using Hexadecimal: &#x275B;</p>
<p>Opening ornament using HTML Code: &#10075;</p>
<p id="point">Opening ornament using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Heavy Single Turned 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 Single Turned Comma Quotation Mark Ornament (❛) as an opening quote, paired with the closing ornament (❜):

Pull quote ❛ Typography is the craft of endowing language with a durable voice. ❜
Testimonial ❛ Exactly what I needed. ❜
Large opening
Ornament vs curly ❛❜   ‘’
Numeric refs &#x275B; &#10075; \275B

🧠 How It Works

1

Hexadecimal Code

&#x275B; uses the Unicode hexadecimal value 275B to display the opening single quote ornament. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\275B is used in CSS stylesheets, particularly in content on ::before for decorative opening quotes on blockquotes and cards.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+275B is in the Dingbats block. Previous: Closing Ornament (❜).

Use Cases

The Heavy Single Turned Comma Quotation Mark Ornament (❛) is commonly used in:

✍ Typography

Opening ornamental punctuation in headings, pull quotes, and styled paragraphs.

💬 Opening quotes

Decorative opening mark in blockquotes, testimonials, and styled quotation pairs.

📰 Editorial

Article intros, sidebars, and magazine-style layouts with distinctive punctuation.

🎨 Design-heavy sites

Visual interest in hero sections, banners, and typography-focused layouts.

📖 Quote pairs

Match with ❜ (U+275C) for balanced opening and closing ornament quotes.

🔨 CSS quotes

content on ::before to style opening quotes without extra HTML.

💡 Best Practices

Do

  • Use <blockquote> or <q> for quoted content; add ❛ for visual styling
  • Pair ❛ (opening) with ❜ (closing, U+275C) for balanced ornament quotes
  • Use content: "\275B" on ::before 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+275B (❛) with U+275C (❜, closing) or &lsquo;
  • Expect a named HTML entity for U+275B
  • Use CSS \275B in HTML text nodes
  • Overuse ornamental punctuation in long body copy

Key Takeaways

1

Two HTML numeric references plus CSS insert U+275B

&#x275B; &#10075;
2

For CSS, use \275B in the content property (often ::before)

3

Unicode U+275B — opening single quote ornament (❛)

4

Pair with closing U+275C (❜) for balanced styling

❓ Frequently Asked Questions

Use &#x275B; (hex), &#10075; (decimal), or \275B in CSS content. There is no named entity. All three methods render the opening single quote ornament (❛) correctly.
U+275B (HEAVY SINGLE TURNED COMMA QUOTATION MARK ORNAMENT). Dingbats block. Hex 275B, decimal 10075. The symbol (❛) is a decorative opening single-quote style, often used with ❜ for closing.
In typography and decorative text, as an opening quote in styled pairs, editorial and design-heavy websites, ornamental punctuation in headings and pull quotes, and any content where a distinct opening single quotation mark is desired.
HTML references (&#10075; or &#x275B;) go in markup. The CSS escape \275B is used in stylesheets, typically on ::before or ::after. Both produce ❛.
Named entities cover common ASCII, Latin-1, and widely used symbols. U+275B uses numeric hex (&#x275B;) or decimal (&#10075;) codes, which is standard for decorative characters in the Dingbats block.

Explore More HTML Entities!

Discover 1500+ HTML character references — symbols, punctuation, 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