HTML Entity for Heavy Left Pointing Angle Bracket Ornament (❰)

What You'll Learn
How to display the Heavy Left Pointing Angle Bracket Ornament (❰) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2770 (HEAVY LEFT POINTING ANGLE BRACKET ORNAMENT) in the Dingbats block (U+2700–U+27BF). It is a decorative left-pointing angle bracket—ideal for callouts, paired bracket styling (often with U+2771 ❱), back/previous cues, and typographic design where a distinct bracket is desired beyond ASCII < (U+003C).
Render it with ❰, ❰, or CSS escape \2770. There is no named HTML entity. Do not confuse ❰ with U+276E (❮, heavy left pointing angle quotation mark ornament) or U+300A (《, CJK left double angle bracket); bracket and quote ornaments are separate code points.
⚡ Quick Reference — Left Angle Bracket Ornament
U+2770Dingbats block
❰Hexadecimal reference
❰Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2770
Hex code ❰
HTML code ❰
Named entity (none)
CSS code \2770
Meaning Left angle bracket ornament
Pair with U+2771 = right bracket (❱)
Related U+003C = less-than (<)
U+276E = angle quote (❮)Complete HTML Example
This example demonstrates the Heavy Left Pointing Angle Bracket Ornament (❰) using hexadecimal code, decimal HTML code, and CSS content escapes on a bracket-wrapped callout (paired with ❱):
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2770";
}
</style>
</head>
<body>
<p>Left Bracket using Hexadecimal: ❰</p>
<p>Left Bracket using HTML Code: ❰</p>
<p id="point">Left Bracket using CSS Entity</p>
</body>
</html>🌐 Browser Support
The Heavy Left Pointing Angle Bracket Ornament (❰) is widely supported in modern browsers when the font includes Dingbats bracket glyphs:
👀 Live Preview
Heavy Left Pointing Angle Bracket Ornament (❰) in context, paired with the right bracket and compared with related symbols:
🧠 How It Works
Hexadecimal Code
❰ uses the Unicode hexadecimal value 2770 to display the left bracket ornament. The x prefix indicates hexadecimal format.
Decimal HTML Code
❰ uses the decimal Unicode value 10096 to display the same character.
CSS Entity
\2770 is used in CSS stylesheets, particularly in content on ::before for opening brackets; pair \2771 on ::after for closing.
Same visual result
All three methods produce ❰. Unicode U+2770 is in the Dingbats block. Next: Angle Quotation Ornament (❮).
Use Cases
The Heavy Left Pointing Angle Bracket Ornament (❰) is commonly used in:
Opening bracket for callouts, pull quotes, or highlighted text (often paired with ❱).
Styled bracket in articles, blockquotes, and editorial layout.
Back or previous indicator in navigation or breadcrumbs (with text/ARIA).
Decorative bracket for message bubbles or quote styling in chat UIs.
content: "\2770" on ::before without extra HTML markup.
Custom bracket motif in headers, cards, or brand assets.
💡 Best Practices
Do
- Pair ❰ with ❱ (U+2771) for balanced bracket styling
- Use
content: "\2770 "on::beforeand\2771on::after - Declare UTF-8 with
<meta charset="utf-8"> - Add visible link text when ❰ suggests “back” or “previous”
- Keep one numeric style (hex or decimal) per project
- Use semantic
<blockquote>for quoted callout content
Don’t
- Confuse U+2770 (❰) with U+276E (❮) or ASCII
< - Expect a named HTML entity for U+2770
- Use CSS
\2770in HTML text nodes - Rely on ❰ alone for navigation without accessible labels
- Substitute ornamental brackets for required semantic quote markup alone
Key Takeaways
Two HTML numeric references plus CSS insert U+2770
❰ ❰For CSS, use \2770 in the content property
Unicode U+2770 — left angle bracket ornament (❰)
Pair with U+2771 (❱) for opening/closing bracket sets
Next: Angle Quotation (❮)
❓ Frequently Asked Questions
❰ (hex), ❰ (decimal), or \2770 in CSS content. There is no named entity. All three methods render the symbol (❰) correctly.U+2770 (HEAVY LEFT POINTING ANGLE BRACKET ORNAMENT). Dingbats block. Hex 2770, decimal 10096. The symbol (❰) is a decorative left-pointing angle bracket, often used with ❱ for paired styling.❰ or ❰) go in markup. The CSS escape \2770 is used in stylesheets, typically on ::before or ::after. Both produce ❰.❰) or decimal (❰) codes, which is standard for decorative Dingbats brackets.Explore More HTML Entities!
Discover 1500+ HTML character references — symbols, math, and more.
8 people found this page helpful
