HTML Entity for Medium Left Pointing Angle Bracket Ornament (❬)

What You'll Learn
How to display the medium left pointing angle bracket ornament (❬) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+276C (MEDIUM LEFT-POINTING ANGLE BRACKET ORNAMENT) in the Dingbats block (U+2700–U+27BF)—a decorative left-pointing angle bracket for typography, callouts, and navigation design.
Render it with ❬, ❬, or CSS escape \276C. There is no named HTML entity. Pair with U+276D (❭) for balanced left/right styling. Do not confuse ❬ with ❰ (heavy bracket) or ASCII < (U+003C).
⚡ Quick Reference — Left Angle Bracket Ornament
U+276CDingbats block
❬Hexadecimal reference
❬Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+276C
Hex code ❬
HTML code ❬
Named entity (none)
CSS code \276C
Meaning Medium left angle bracket ornament
Pair with U+276D = right angle bracket (❭)
Related U+003C = less-than (<)
U+2770 = heavy left bracket (❰)Complete HTML Example
This example demonstrates the medium left pointing angle bracket ornament (❬) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\276C";
}
</style>
</head>
<body>
<p>Left Angle Bracket using Hexadecimal: ❬</p>
<p>Left Angle Bracket using HTML Code: ❬</p>
<p id="point">Left Angle Bracket using CSS Entity: </p>
<p>Paired callout: ❬ Featured text ❭</p>
</body>
</html>🌐 Browser Support
The medium left pointing angle bracket ornament is widely supported in modern browsers:
👀 Live Preview
See the medium left pointing angle bracket ornament (❬) in decorative contexts:
🧠 How It Works
Hexadecimal Code
❬ uses the Unicode hexadecimal value 276C to display the left angle bracket ornament. The x prefix indicates hexadecimal format.
Decimal HTML Code
❬ uses the decimal Unicode value 10092 to display the same character.
CSS Entity
\276C is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after for decorative brackets.
Same visual result
All three methods produce: ❬. Unicode U+276C sits in the Dingbats block (U+2700–U+27BF). No named HTML entity—use numeric codes in markup.
Use Cases
The medium left pointing angle bracket ornament (❬) is commonly used in:
Stylized headings, labels, and accent brackets in web design.
Magazine-style layouts, editorial sites, and book-inspired web pages.
Opening bracket for highlighted tips, notes, and sidebar content.
Decorative opening mark paired with ❭ for quote blocks.
Back links, previous-page cues, and breadcrumb-style accents.
HTML entity tutorials and Dingbats Unicode documentation.
💡 Best Practices
Do
- Pair ❬ with ❭ (U+276D) for balanced left/right styling
- Use
❬or❬consistently per project - Serve pages with UTF-8 (
<meta charset="utf-8">) - Add accessible text so screen readers aren’t confused by ornaments
- Test glyph rendering across browsers and font stacks
Don’t
- Confuse ❬ with ❰ (heavy bracket) or ASCII
< - Use ornamental brackets for semantic grouping—prefer real markup
- Put CSS escape
\276Cin HTML text nodes - Use HTML entities in JS (use
\u276C) - Use padded Unicode notation like U+0276C—the correct value is
U+276C
Key Takeaways
Two HTML references both render ❬
❬ ❬For CSS stylesheets, use the escape in the content property
\276CUnicode U+276C — MEDIUM LEFT-POINTING ANGLE BRACKET ORNAMENT
No named HTML entity—use numeric codes or UTF-8 literal ❬
Pair with ❭ for decorative left/right angle bracket ornaments
❓ Frequently Asked Questions
❬ (hex), ❬ (decimal), or \276C in CSS content. All produce ❬. There is no named HTML entity for U+276C.U+276C (MEDIUM LEFT-POINTING ANGLE BRACKET ORNAMENT). Dingbats block (U+2700–U+27BF). Hex 276C, decimal 10092. Pair with U+276D (❭).<.❬ or ❬) go directly in markup. The CSS escape \276C is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.❬ or ❬, or type ❬ directly in UTF-8 source files.Explore More HTML Entities!
Discover 1500+ HTML character references — dingbats, ornaments, and decorative symbols.
8 people found this page helpful
