HTML Entity for Medium Left Parenthesis Ornament (❨)

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

What You'll Learn

How to display the medium left parenthesis ornament (❨) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2768 (MEDIUM LEFT PARENTHESIS ORNAMENT) in the Dingbats block (U+2700–U+27BF)—a decorative left parenthesis for typography, callouts, and publishing design.

Render it with ❨, ❨, or CSS escape \2768. There is no named HTML entity. Pair with U+2769 (❩) for balanced left/right styling. Do not confuse ❨ with ❪ (flattened left paren) or ASCII ( (U+0028).

⚡ Quick Reference — Left Paren Ornament

Unicode U+2768

Dingbats block

Hex Code ❨

Hexadecimal reference

HTML Code ❨

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2768
Hex code       ❨
HTML code      ❨
Named entity   (none)
CSS code       \2768
Meaning        Medium left parenthesis ornament
Pair with      U+2769 = right ornament (❩)
Related        U+0028 = ASCII parenthesis (()
               U+276A = flattened left paren (❪)
1

Complete HTML Example

This example demonstrates the medium left parenthesis ornament (❨) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2768";
  }
 </style>
</head>
<body>
<p>Left Paren Ornament using Hexadecimal: &#x2768;</p>
<p>Left Paren Ornament using HTML Code: &#10088;</p>
<p id="point">Left Paren Ornament using CSS Entity: </p>
<p>Paired callout: &#x2768; Featured text &#x2769;</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The medium left parenthesis ornament is widely supported in modern browsers:

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

👀 Live Preview

See the medium left parenthesis ornament (❨) in decorative contexts:

Paired callout ❨ Featured highlight ❩
Large glyph
vs ASCII ( ASCII   ❨ ornament
Pull quote ❨ Content is king, but design is its crown. ❩
Numeric refs &#x2768; &#10088;

🧠 How It Works

1

Hexadecimal Code

&#x2768; uses the Unicode hexadecimal value 2768 to display the left parenthesis ornament. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+2768 sits in the Dingbats block (U+2700–U+27BF). No named HTML entity—use numeric codes in markup.

Use Cases

The medium left parenthesis ornament (❨) is commonly used in:

🎨 Decorative typography

Stylized headings, labels, and accent brackets in web design.

📰 Publishing

Magazine-style layouts, editorial sites, and book-inspired web pages.

💬 Callouts

Opening bracket for highlighted tips, notes, and sidebar content.

📝 Pull quotes

Decorative opening mark paired with ❩ for testimonial blocks.

🏫 Academic styling

Formal content, citations, and stylized academic formatting online.

📄 Reference guides

HTML entity tutorials and Dingbats Unicode documentation.

💡 Best Practices

Do

  • Pair ❨ with ❩ (U+2769) for balanced left/right styling
  • Use &#x2768; or &#10088; 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 \2768 in HTML text nodes
  • Use HTML entities in JS (use \u2768)
  • Use padded Unicode notation like U+02768—the correct value is U+2768

Key Takeaways

1

Two HTML references both render ❨

&#x2768; &#10088;
2

For CSS stylesheets, use the escape in the content property

\2768
3

Unicode U+2768 — MEDIUM LEFT PARENTHESIS ORNAMENT

4

No named HTML entity—use numeric codes or UTF-8 literal ❨

5

Pair with ❩ for decorative left/right parenthesis ornaments

❓ Frequently Asked Questions

Use &#x2768; (hex), &#10088; (decimal), or \2768 in CSS content. All produce ❨. There is no named HTML entity for U+2768.
U+2768 (MEDIUM LEFT PARENTHESIS ORNAMENT). Dingbats block (U+2700–U+27BF). Hex 2768, decimal 10088. Pair with U+2769 (❩).
For decorative typography, callouts, pull quotes, publishing layouts, and design accents where a medium left parenthesis ornament is needed beyond ASCII (.
HTML references (&#10088; or &#x2768;) go directly in markup. The CSS escape \2768 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
No. U+2768 has no named HTML entity. Use numeric references &#x2768; or &#10088;, or type ❨ directly in UTF-8 source files.

Explore More HTML Entities!

Discover 1500+ HTML character references — dingbats, ornaments, and decorative symbols.

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