HTML Entity for Heavy Left Pointing Angle Quotation Mark Ornament (❮)

What You'll Learn
How to display the Heavy Left Pointing Angle Quotation Mark Ornament (❮) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+276E (HEAVY LEFT POINTING ANGLE QUOTATION MARK ORNAMENT) in the Dingbats block (U+2700–U+27BF). It is a decorative left-pointing angle quotation mark—ideal for blockquotes, pull quotes, testimonials, and typographic design, often paired with U+276F (❯) for balanced opening/closing quote styling.
Render it with ❮, ❮, or CSS escape \276E. There is no named HTML entity. Do not confuse ❮ with U+2770 (❰, angle bracket ornament) or U+00AB («, guillemet); quote and bracket ornaments are separate code points.
⚡ Quick Reference — Angle Quotation Ornament
U+276EDingbats block
❮Hexadecimal reference
❮Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+276E
Hex code ❮
HTML code ❮
Named entity (none)
CSS code \276E
Meaning Left angle quotation ornament
Pair with U+276F = right quote (❯)
Related U+2770 = bracket (❰)
U+00AB = guillemet («)Complete HTML Example
This example demonstrates the Heavy Left Pointing Angle Quotation Mark Ornament (❮) using hexadecimal code, decimal HTML code, and CSS content escapes on a semantic blockquote (paired with ❯):
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\276E";
}
</style>
</head>
<body>
<p>Angle Quote using Hexadecimal: ❮</p>
<p>Angle Quote using HTML Code: ❮</p>
<p id="point">Angle Quote using CSS Entity</p>
</body>
</html>🌐 Browser Support
The Heavy Left Pointing Angle Quotation Mark Ornament (❮) is widely supported in modern browsers when the font includes Dingbats quotation glyphs:
👀 Live Preview
Heavy Left Pointing Angle Quotation Mark Ornament (❮) in context, paired with the right quote and compared with related symbols:
🧠 How It Works
Hexadecimal Code
❮ uses the Unicode hexadecimal value 276E to display the quote ornament. The x prefix indicates hexadecimal format.
Decimal HTML Code
❮ uses the decimal Unicode value 10094 to display the same character.
CSS Entity
\276E is used in CSS stylesheets, particularly in content on ::before for opening quotes; pair \276F on ::after for closing.
Same visual result
All three methods produce ❮. Unicode U+276E is in the Dingbats block. Next: Shaded Right Arrow (➭).
Use Cases
The Heavy Left Pointing Angle Quotation Mark Ornament (❮) is commonly used in:
Opening quote for blockquotes, pull quotes, and highlighted excerpts (often with ❯).
Styled opening quotation in articles, interviews, and editorial layout.
Opening quote for customer testimonials, reviews, and quote cards.
Decorative quote styling in book excerpts, epigraphs, and literary content.
content: "\276E" on ::before and \276F on ::after.
Custom quote styling in headers, cards, or brand assets.
💡 Best Practices
Do
- Use
<blockquote>or<q>for quoted content - Pair ❮ with ❯ (U+276F) for balanced opening/closing quotes
- Apply ornaments via CSS
::before/::afteras decoration - Declare UTF-8 with
<meta charset="utf-8"> - Keep one numeric style (hex or decimal) per project
- Mark purely decorative quote glyphs with
aria-hidden="true"when duplicated in CSS
Don’t
- Confuse U+276E (❮) with U+2770 (❰) bracket ornaments
- Expect a named HTML entity for U+276E
- Use CSS
\276Ein HTML text nodes - Replace semantic quotation markup with ornaments only
- Rely on decorative glyphs alone for citation or attribution meaning
Key Takeaways
Two HTML numeric references plus CSS insert U+276E
❮ ❮For CSS, use \276E in the content property
Unicode U+276E — left angle quotation ornament (❮)
Pair with U+276F (❯) for opening/closing quote sets
Next: Shaded Right Arrow (➭)
❓ Frequently Asked Questions
❮ (hex), ❮ (decimal), or \276E in CSS content. There is no named entity. All three methods render the symbol (❮) correctly.U+276E (HEAVY LEFT POINTING ANGLE QUOTATION MARK ORNAMENT). Dingbats block. Hex 276E, decimal 10094. The symbol (❮) is a decorative left-pointing angle quote, often used with ❯ for paired styling in blockquotes.❮ or ❮) go in markup. The CSS escape \276E is used in stylesheets, typically on ::before or ::after. Both produce ❮.❮) or decimal (❮) codes, which is standard for decorative Dingbats quotation ornaments.Explore More HTML Entities!
Discover 1500+ HTML character references — symbols, math, and more.
8 people found this page helpful
