HTML Entity for Heavy Open Centre Cross (✜)

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

What You'll Learn

How to display the Heavy Open Centre Cross (✜) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+271C (HEAVY OPEN CENTRE CROSS) in the Dingbats block (U+2700–U+27BF). It is a heavy cross with an open centre—ideal for decorative elements, custom bullet points, design accents, and symbolic or typographic use where a distinct cross motif is needed beyond solid crosses like U+271A (✚).

Render it with ✜, ✜, or CSS escape \271C. There is no named HTML entity. Do not confuse ✜ with U+271D (✝, Latin cross) or U+2716 (✖, heavy multiplication X); each Dingbats cross has a different shape and meaning.

⚡ Quick Reference — Open Centre Cross

Unicode U+271C

Dingbats block

Hex Code ✜

Hexadecimal reference

HTML Code ✜

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+271C
Hex code       ✜
HTML code      ✜
Named entity   (none)
CSS code       \271C
Meaning        Heavy open centre cross
Related        U+271A = Greek cross (✚)
               U+271D = Latin cross (✝)
               U+2716 = multiplication X (✖)
1

Complete HTML Example

This example demonstrates the Heavy Open Centre Cross (✜) using hexadecimal code, decimal HTML code, and CSS content for custom list bullets and a decorative divider:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\271C";
  }
 </style>
</head>
<body>
<p>Open Centre Cross using Hexadecimal: &#x271C;</p>
<p>Open Centre Cross using HTML Code: &#10012;</p>
<p id="point">Open Centre Cross using CSS Entity</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Heavy Open Centre Cross (✜) is widely supported in modern browsers when the font includes Dingbats cross glyphs:

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

👀 Live Preview

Heavy Open Centre Cross (✜) in context, compared with other cross symbols:

List bullet ✜ Custom list marker
Divider ✜ ✜ ✜
Badge ✜ Featured
Large glyph
Comparison ✜   ✚   ✝
Numeric refs &#x271C; &#10012; \271C

🧠 How It Works

1

Hexadecimal Code

&#x271C; uses the Unicode hexadecimal value 271C to display the open centre cross. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\271C is used in CSS stylesheets, particularly in content on ::before for list bullets, dividers, and badges.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+271C is in the Dingbats block. Next: Outlined Black Star (✮).

Use Cases

The Heavy Open Centre Cross (✜) is commonly used in:

✜ Decoration

Design accents, borders, and ornamental details in headers, footers, and cards.

📋 Bullets

Custom list markers and bullet styles with a cross-shaped bullet.

📝 Typography

Section dividers, subheadings, and typographic flourishes.

⛪ Symbolic

Ceremonial or symbolic content where an open-centre cross fits the design.

🔨 CSS content

content: "\271C" on ::before without extra markup.

🏷 Badges

Badges, awards, or icons using a cross motif with open centre.

💡 Best Practices

Do

  • Use <ul>/<li> when ✜ acts as a list bullet
  • Apply content: "\271C " via li::before
  • Declare UTF-8 with <meta charset="utf-8">
  • Keep one numeric style (hex or decimal) per project
  • Mark purely decorative crosses with aria-hidden="true" when appropriate
  • Pair meaningful uses with visible text or aria-label

Don’t

  • Replace semantic list markup with glyph-only paragraphs
  • Confuse U+271C (✜) with U+271A (✚) or U+271D (✝)
  • Expect a named HTML entity for U+271C
  • Use CSS \271C in HTML text nodes
  • Use ✜ alone when the cross conveys required meaning without labels

Key Takeaways

1

Two HTML numeric references plus CSS insert U+271C

&#x271C; &#10012;
2

For CSS, use \271C in the content property

3

Unicode U+271C — heavy open centre cross (✜)

4

Distinct from Greek U+271A (✚) and Latin U+271D (✝)

❓ Frequently Asked Questions

Use &#x271C; (hex), &#10012; (decimal), or \271C in CSS content. There is no named entity. All three methods render the symbol (✜) correctly.
U+271C (HEAVY OPEN CENTRE CROSS). Dingbats block. Hex 271C, decimal 10012. The symbol (✜) is a heavy cross with an open centre, often used for decorative and design purposes.
For decorative elements and design accents, bullet points and list markers, symbolic or ceremonial content, headers and typography, and any UI that needs a distinct cross symbol with an open centre.
HTML references (&#10012; or &#x271C;) go in markup. The CSS escape \271C is used in stylesheets, typically on ::before or ::after. Both produce ✜.
Named entities cover common ASCII, Latin-1, and widely used symbols. U+271C uses numeric hex (&#x271C;) or decimal (&#10012;) codes, which is standard for Dingbats cross symbols.

Explore More HTML Entities!

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