HTML Entity for Medium Right Parenthesis Ornament (❩)

What You'll Learn
How to display the medium right parenthesis ornament (❩) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2769 (MEDIUM RIGHT PARENTHESIS ORNAMENT) in the Dingbats block (U+2700–U+27BF)—a decorative right parenthesis for typography, callouts, and publishing design.
Render it with ❩, ❩, or CSS escape \2769. There is no named HTML entity. Pair with U+2768 (❨) for balanced left/right styling. Do not confuse ❩ with ❫ (flattened right paren) or ASCII ) (U+0029).
⚡ Quick Reference — Right Paren Ornament
U+2769Dingbats block
❩Hexadecimal reference
❩Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2769
Hex code ❩
HTML code ❩
Named entity (none)
CSS code \2769
Meaning Medium right parenthesis ornament
Pair with U+2768 = left ornament (❨)
Related U+0029 = ASCII parenthesis ())
U+276B = flattened right paren (❫)Complete HTML Example
This example demonstrates the medium right parenthesis ornament (❩) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\2769";
}
</style>
</head>
<body>
<p>Right Paren Ornament using Hexadecimal: ❩</p>
<p>Right Paren Ornament using HTML Code: ❩</p>
<p id="point">Right Paren Ornament using CSS Entity: </p>
<p>Paired callout: ❨ Featured text ❩</p>
</body>
</html>🌐 Browser Support
The medium right parenthesis ornament is widely supported in modern browsers:
👀 Live Preview
See the medium right parenthesis ornament (❩) in decorative contexts:
🧠 How It Works
Hexadecimal Code
❩ uses the Unicode hexadecimal value 2769 to display the right parenthesis ornament. The x prefix indicates hexadecimal format.
Decimal HTML Code
❩ uses the decimal Unicode value 10089 to display the same character.
CSS Entity
\2769 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+2769 sits in the Dingbats block (U+2700–U+27BF). No named HTML entity—use numeric codes in markup.
Use Cases
The medium right parenthesis ornament (❩) is commonly used in:
Stylized headings, labels, and accent brackets in web design.
Magazine-style layouts, editorial sites, and book-inspired web pages.
Closing bracket for highlighted tips, notes, and sidebar content.
Decorative closing mark paired with ❨ for testimonial blocks.
Formal content, citations, and stylized academic formatting online.
HTML entity tutorials and Dingbats Unicode documentation.
💡 Best Practices
Do
- Pair ❩ with ❨ (U+2768) 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 ❫ (flattened) or ASCII
) - Use ornamental brackets for semantic grouping—prefer real markup
- Put CSS escape
\2769in HTML text nodes - Use HTML entities in JS (use
\u2769) - Use padded Unicode notation like U+02769—the correct value is
U+2769
Key Takeaways
Two HTML references both render ❩
❩ ❩For CSS stylesheets, use the escape in the content property
\2769Unicode U+2769 — MEDIUM RIGHT PARENTHESIS ORNAMENT
No named HTML entity—use numeric codes or UTF-8 literal ❩
Pair with ❨ for decorative left/right parenthesis ornaments
❓ Frequently Asked Questions
❩ (hex), ❩ (decimal), or \2769 in CSS content. All produce ❩. There is no named HTML entity for U+2769.U+2769 (MEDIUM RIGHT PARENTHESIS ORNAMENT). Dingbats block (U+2700–U+27BF). Hex 2769, decimal 10089. Pair with U+2768 (❨).).❩ or ❩) go directly in markup. The CSS escape \2769 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
