HTML Entity for Open Centre Cross (✛)

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

What You'll Learn

How to display the Open Centre Cross (✛) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+271B (OPEN CENTRE CROSS) in the Dingbats block (U+2700–U+27BF)—a 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.

Render it with ✛, ✛, or CSS escape \271B. There is no named HTML entity. Do not confuse ✛ with U+271C (✜, heavy open centre cross), 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+271B

Dingbats block

Hex Code ✛

Hexadecimal reference

HTML Code ✛

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+271B
Hex code       ✛
HTML code      ✛
Named entity   (none)
CSS code       \271B
Meaning        Open centre cross (Dingbats)
Related        U+271C = heavy open centre cross (✜)
               U+271D = Latin cross (✝)
               U+2716 = heavy multiplication X (✖)
Block          Dingbats (U+2700–U+27BF)
1

Complete HTML Example

A simple example showing ✛ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\271B";
  }
 </style>
</head>
<body>
<p>Open centre cross (hex): &#x271B;</p>
<p>Open centre cross (decimal): &#10011;</p>
<p id="point">Open centre cross (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Open Centre Cross (✛) is widely supported in all modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Open Centre Cross (✛) in decorative and design contexts:

Single symbol
List marker ✛ Featured section  |  ✛ Special note
Badge style ✛ Highlight
Not the same as Heavy ✜  |  Latin ✝  |  Multiply ✖
Numeric refs &#x271B; &#10011; \271B

🧠 How It Works

1

Hexadecimal Code

&#x271B; uses the Unicode hexadecimal value 271B to display the open centre cross.

HTML markup
2

Decimal HTML Code

&#10011; uses the decimal Unicode value 10011 for the same character.

HTML markup
3

CSS Entity

\271B is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after for custom bullets.

CSS stylesheet
=

Decorative cross result

All three methods render . Unicode U+271B in the Dingbats block. Next: Open Centre Teardrop Spoked Asterisk (✼).

Use Cases

The Open Centre Cross (✛) is commonly used in:

📄 Custom bullets

Distinct list markers and bullet points beyond default disc or circle styles.

🎨 Design accents

Decorative symbols in headers, badges, cards, and typography layouts.

⚖ Symbolic content

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

📝 Footnotes & refs

Reference markers and inline notes where a styled cross motif is preferred.

💻 Web components

Icon-like symbols in navigation, tags, and status indicators without image assets.

📋 Unicode references

Character pickers, entity documentation, and Dingbats symbol guides.

♿ Accessibility

Pair decorative ✛ with visible text; do not rely on the symbol alone for meaning.

💡 Best Practices

Do

  • Use &#x271B; or &#10011; for inline decorative crosses
  • Use CSS \271B in ::before for custom list bullets
  • Set <meta charset="utf-8"> for reliable rendering
  • Pick one numeric style per project for consistency
  • Provide text context alongside decorative cross symbols

Don’t

  • Confuse ✛ with heavy cross ✜, Latin cross ✝, or multiply ✖
  • Use padded Unicode notation like U+0271B—the correct value is U+271B
  • Use CSS escape \271B in HTML text nodes
  • Use ✛ as a religious Latin cross substitute without context
  • Assume every font renders Dingbats identically—test your typeface

Key Takeaways

1

Two HTML numeric references plus CSS for U+271B

&#x271B; &#10011;
2

For CSS stylesheets, use \271B in the content property

3

Unicode U+271B — OPEN CENTRE CROSS in Dingbats

4

Distinct from heavy ✜, Latin ✝, and multiply ✖

❓ Frequently Asked Questions

Use &#x271B; (hex), &#10011; (decimal), or \271B in CSS content. There is no named entity. All three render ✛.
U+271B (OPEN CENTRE CROSS). Dingbats block (U+2700–U+27BF). Hex 271B, decimal 10011.
No. ✛ (U+271B) is a symmetric decorative cross with an open centre in Dingbats. ✝ (U+271D) is LATIN CROSS—a different shape commonly used for religious symbolism.
For decorative bullet points, list markers, badges, typography accents, symbolic or ceremonial content, and any UI needing a distinct open-centre cross motif.
Named HTML entities cover a subset of common characters. U+271B uses numeric hex or decimal codes or CSS escapes, which is standard for Dingbats cross symbols.

Explore More HTML Entities!

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