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

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
U+2773Dingbats
❳Hexadecimal reference
❳Decimal reference
❳Most readable option
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2773";
}
</style>
</head>
<body>
<p>Symbol (hex): ❳</p>
<p>Symbol (decimal): ❳</p>
<p>Symbol (named): ❳</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Light Right Tortoise Shell Bracket Ornament (❳) is supported in modern browsers when the font includes Dingbats glyphs:
👀 Live Preview
See the Light Right Tortoise Shell Bracket Ornament (❳) in decorative contexts:
🧠 How It Works
Hexadecimal Code
❳ uses the Unicode hexadecimal value 2773 to display the ornament. The x prefix indicates hexadecimal format.
Decimal HTML Code
❳ uses the decimal Unicode value 10099 to display the same character.
Named Entity
❳ is the semantic named entity for ❳—readable in source HTML and part of the HTML5 character set.
CSS Entity
\2773 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ❳. Unicode U+2773 is in Dingbats. Pair with U+2772 (❲, ❲). Previous: Light Left Tortoise Shell Bracket Ornament.
Use Cases
The Light Right Tortoise Shell Bracket Ornament (❳) is commonly used in:
Close ornamental brackets around titles, quotes, or callouts in editorial and web design.
Use in invitations, certificates, and print or digital layouts that need a classic bracket style.
Frame sidebars, notes, or highlighted text with paired left and right tortoise-shell brackets.
Create visual framing in headers, footers, or decorative sections with matching brackets.
Style callouts with ❲ opening and ❳ closing bracket ornaments.
Use in CSS content or HTML for decorative UI elements or custom markers.
💡 Best Practices
Do
- Use
❳for readable, maintainable source markup - Pair ❳ with ❲ (
❲) 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
\2773in 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
Four HTML/CSS references all render ❳
❳ ❳ ❳For CSS stylesheets, use the escape in the content property
\2773Unicode U+2773 — LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT
Prefer ❳ for readability; pair with ❲ for framing
Previous: Light Left Tortoise Shell Bracket Ornament Next: HTML Entities
❓ Frequently Asked Questions
❳ (hex), ❳ (decimal), ❳ (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: ❳. Pair with U+2772 (❲, ❲).❳, ❳, or ❳) go in markup. The CSS escape \2773 goes in stylesheets (e.g. content on ::before or ::after). Both render ❳.❳ is the named HTML entity for ❳. Numeric codes ❳ and ❳ are equivalent and also widely supported.Explore More HTML Entities!
Discover 1500+ HTML character references — dingbats, ornaments, and more.
8 people found this page helpful
