HTML Entity for Light Right Tortoise Shell Bracket Ornament (❳)

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

What You'll Learn

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

Render it with ❳, ❳, ❳, or CSS escape \2773. It is a decorative right bracket in the tortoise-shell style—often paired with ❲ (❲, U+2772) for ornamental framing.

⚡ Quick Reference — Light Right Tortoise Shell Bracket Ornament

Unicode U+2773

Dingbats

Hex Code ❳

Hexadecimal reference

HTML Code ❳

Decimal reference

Named Entity ❳

Most readable option

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

Complete HTML Example

A simple example showing the Light Right 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: "\2773";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x2773;</p>
<p>Symbol (decimal): &#10099;</p>
<p>Symbol (named): &rbbrk;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Light Right 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 Right Tortoise Shell Bracket Ornament (❳) in decorative contexts:

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

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

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

HTML markup
4

CSS Entity

\2773 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+2773 is in Dingbats. Pair with U+2772 (❲, &lbbrk;). Previous: Light Left Tortoise Shell Bracket Ornament.

Use Cases

The Light Right Tortoise Shell Bracket Ornament (❳) is commonly used in:

✨ Decorative typography

Close 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 framing in headers, footers, or decorative sections with matching brackets.

📚 Quotes & callouts

Style callouts with ❲ opening and ❳ closing bracket ornaments.

🌐 Web & UI design

Use in CSS content or HTML for decorative UI elements or custom markers.

💡 Best Practices

Do

  • Use &rbbrk; for readable, maintainable source markup
  • Pair ❳ with ❲ (&lbbrk;) for balanced ornamental framing
  • Ensure your font supports Dingbats (U+2773) 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 right bracket ] (use the standard bracket when you mean punctuation, not decoration)
  • Put CSS escape \2773 in HTML text nodes
  • Rely on ornamental brackets alone for accessibility—use semantic markup 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 ❳

&#x2773; &#10099; &rbbrk;
2

For CSS stylesheets, use the escape in the content property

\2773
3

Unicode U+2773 — LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT

4

Prefer &rbbrk; for readability; pair with ❲ for framing

❓ Frequently Asked Questions

Use &#x2773; (hex), &#10099; (decimal), &rbbrk; (named), or \2773 in CSS content. All produce ❳.
U+2773 (LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT). Dingbats block (U+2700–U+27BF). Hex 2773, decimal 10099. Named entity: &rbbrk;. Pair with U+2772 (❲, &lbbrk;).
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 right tortoise-shell style bracket for visual effect.
HTML references (&#10099;, &#x2773;, or &rbbrk;) go in markup. The CSS escape \2773 goes in stylesheets (e.g. content on ::before or ::after). Both render ❳.
Yes. &rbbrk; is the named HTML entity for ❳. Numeric codes &#x2773; and &#10099; 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