HTML Entity for Curved Stem Paragraph Sign Ornament (❡)

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

What You'll Learn

How to display the Curved Stem Paragraph Sign Ornament (❡) in HTML and CSS. This character is U+2761 in the Dingbats block (U+2700–U+27BF). It is a decorative variant of the paragraph sign, used in legal, academic, and typographic content as a stylized section or paragraph marker.

There is no named HTML entity for U+2761. Use ❡, ❡, or \2761 in CSS content. It is often used alongside or instead of the standard paragraph sign U+00B6 (¶). See Asterism (⁂) for another typographic section marker.

⚡ Quick Reference — Curved Stem Paragraph Sign Ornament

Unicode U+2761

Dingbats (U+2700–U+27BF)

Hex Code ❡

Hexadecimal reference

HTML Code ❡

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2761
Hex code       ❡
HTML code      ❡
Named entity   —
CSS code       \2761
1

Complete HTML Example

This example shows U+2761 using hexadecimal and decimal character references, plus a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2761";
  }
 </style>
</head>
<body>
<p>Curved Stem Paragraph Sign Ornament using Hexadecimal: &#x2761;</p>
<p>Curved Stem Paragraph Sign Ornament using HTML Code: &#10081;</p>
<p id="point">Curved Stem Paragraph Sign Ornament using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2761 is supported in modern browsers; use a font with Dingbats coverage for consistent glyph display:

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

👀 Live Preview

See the Curved Stem Paragraph Sign Ornament (❡) in typographic contexts:

Section ❡ Chapter One — Introduction
vs paragraph ❡ ornament   ¶ standard (U+00B6)
List marker ❡ First item   ❡ Second item
Standalone
Monospace refs &#x2761; &#10081; \2761

🧠 How It Works

1

Hexadecimal Code

&#x2761; references code point U+2761 using hex digits 2761.

HTML markup
2

Decimal HTML Code

&#10081; is the decimal equivalent (10081) for the same character.

HTML markup
3

CSS Entity

\2761 is the CSS escape for U+2761, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

All three methods produce the ornament: . Unicode U+2761 is in Dingbats (U+2700–U+27BF). No named HTML entity exists.

Use Cases

The Curved Stem Paragraph Sign Ornament (❡) is commonly used in:

📄 Legal & academic

Section markers and paragraph indicators in formal documents.

📚 Typography

Decorative headings, pull quotes, and editorial design with stylized markers.

✍️ Writers & editors

Blogs and long-form content highlighting paragraph or section breaks.

🎨 Decorative lists

Bullet alternatives, list markers, and ornamental dividers in layout.

📖 Reference guides

Unicode and HTML entity pages listing Dingbats and paragraph-related symbols.

🔤 Symbol tutorials

Documentation explaining how to display ❡ and related characters.

💡 Best Practices

Do

  • Use &#x2761; or &#10081; for the paragraph ornament
  • Choose fonts with Dingbats coverage (Segoe UI Symbol, Noto Sans Symbols)
  • Keep hex or decimal style consistent across the document
  • Use \2761 only inside CSS content
  • Pair ❡ with section titles for clear document structure

Don’t

  • Confuse U+2761 (❡) with the standard paragraph sign U+00B6 (¶) when semantics differ
  • Assume a named entity exists—U+2761 has none
  • Rely on fonts that omit Dingbats (glyph may show as a box)
  • Put CSS escape \2761 in HTML text nodes
  • Mix hex and decimal styles randomly in one file

Key Takeaways

1

No named entity—use numeric references

&#x2761; &#10081;
2

For CSS stylesheets, use the escape in the content property

\2761
3

U+2761 CURVED STEM PARAGRAPH SIGN ORNAMENT

4

Dingbats block—decorative variant of paragraph sign ¶

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x2761; (hex), &#10081; (decimal), or \2761 in CSS content. There is no named HTML entity for U+2761.
U+2761 (CURVED STEM PARAGRAPH SIGN ORNAMENT). Dingbats (U+2700–U+27BF). Hex 2761, decimal 10081.
In legal and academic documents, decorative headings, typography and design content, section markers, and anywhere a stylized paragraph or section symbol (❡) is desired. It is often used alongside or instead of the standard paragraph sign (¶).
HTML numeric references (&#10081; or &#x2761;) go in markup. The CSS escape \2761 is used in stylesheets, typically in the content property of pseudo-elements. Both render ❡.
HTML5 named entities focus on commonly used characters. U+2761 is a decorative Dingbats character, so use &#x2761; or &#10081; for reliable display in HTML.

Explore More HTML Entities!

Discover 1500+ HTML character references — math operators, symbols, arrows, 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