HTML Entity for Light Left Tortoise Shell Bracket Ornament (❲)

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

What You'll Learn

How to display the Light Left Tortoise Shell Bracket Ornament (❲) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+2772 (LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT) in the Dingbats block (U+2700–U+27BF).

Render it with ❲, ❲, ❲, or CSS escape \2772. It is a decorative left bracket in the tortoise-shell style—used in typography, design, invitations, and ornamental layout. Pair with the matching right bracket ❳ (❳, U+2773) for balanced framing.

⚡ Quick Reference — Light Left Tortoise Shell Bracket Ornament

Unicode U+2772

Dingbats

Hex Code ❲

Hexadecimal reference

HTML Code ❲

Decimal reference

Named Entity ❲

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2772
Hex code       ❲
HTML code      ❲
Named entity   ❲
CSS code       \2772
Meaning        Light left tortoise shell bracket ornament
Pair           U+2773 = ❳ (❳)
Block          Dingbats (U+2700–U+27BF)
1

Complete HTML Example

A simple example showing the Light Left Tortoise Shell Bracket Ornament (❲) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2772";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x2772;</p>
<p>Symbol (decimal): &#10098;</p>
<p>Symbol (named): &lbbrk;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Light Left Tortoise Shell Bracket Ornament (❲) is supported in modern browsers when the font includes Dingbats glyphs:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Light Left Tortoise Shell Bracket Ornament (❲) in decorative contexts:

Large glyph
Named entity &lbbrk; renders as ❲
Framing ❲ Decorative Title ❳
Quote style ❲ A beautiful quote here. ❳
Pair ❲ ❳ (left and right tortoise-shell brackets)
Numeric refs &#x2772; &#10098; &lbbrk; \2772

🧠 How It Works

1

Hexadecimal Code

&#x2772; uses the Unicode hexadecimal value 2772 to display the ornament. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&lbbrk; is the semantic named entity for ❲—readable in source HTML and part of the HTML5 character set.

HTML markup
4

CSS Entity

\2772 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: . Unicode U+2772 is in Dingbats. Pair with U+2773 (❳, &rbbrk;). Previous: Lezh.

Use Cases

The Light Left Tortoise Shell Bracket Ornament (❲) is commonly used in:

✨ Decorative typography

Add ornamental brackets around titles, quotes, or callouts in editorial and web design.

🎨 Design projects

Use in invitations, certificates, and print or digital layouts that need a classic bracket style.

📄 Editorial & publishing

Frame sidebars, notes, or highlighted text with paired left and right tortoise-shell brackets.

🖼️ Ornamental framing

Create visual brackets or borders in headers, footers, or decorative sections.

📚 Quotes & callouts

Style block quotes or callout boxes with ❲ and the matching right bracket ❳.

🌐 Web & UI design

Use in CSS content or HTML for custom list markers, badges, or decorative elements.

💡 Best Practices

Do

  • Use &lbbrk; for readable, maintainable source markup
  • Pair ❲ with ❳ (&rbbrk;) for balanced ornamental framing
  • Ensure your font supports Dingbats (U+2772) for consistent rendering
  • Use the same method (named or numeric) throughout a document for consistency
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ❲ with the plain left bracket [ (Left Bracket)
  • Put CSS escape \2772 in HTML text nodes
  • Rely on ornamental brackets alone for accessibility—use semantic markup (e.g. <blockquote>) when framing content
  • Assume every system font renders Dingbats identically—test across devices
  • Mix entity methods inconsistently in the same project

Key Takeaways

1

Four HTML/CSS references all render ❲

&#x2772; &#10098; &lbbrk;
2

For CSS stylesheets, use the escape in the content property

\2772
3

Unicode U+2772 — LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT

4

Prefer &lbbrk; for readability; pair with ❳ for framing

❓ Frequently Asked Questions

Use &#x2772; (hex), &#10098; (decimal), &lbbrk; (named), or \2772 in CSS content. All produce ❲.
U+2772 (LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT). Dingbats block (U+2700–U+27BF). Hex 2772, decimal 10098. Named entity: &lbbrk;. Pair with U+2773 (❳, &rbbrk;).
In decorative typography, design projects and invitations, ornamental brackets and framing, editorial and publishing layout, quotes and callouts, and any content that needs a light left tortoise-shell style bracket for visual effect.
HTML references (&#10098;, &#x2772;, or &lbbrk;) go in markup. The CSS escape \2772 goes in stylesheets (e.g. content on ::before or ::after). Both render ❲.
Yes. &lbbrk; is the named HTML entity for ❲. Numeric codes &#x2772; and &#10098; are equivalent and also widely supported.

Explore More HTML Entities!

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