HTML Entity for Circled Open Centre Eight Pointed Star (❂)

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

What You'll Learn

How to display the Circled Open Centre Eight Pointed Star (❂) in HTML using numeric references and CSS escapes. This character is U+2742 (CIRCLED OPEN CENTRE EIGHT POINTED STAR) in the Dingbats block (U+2700–U+27BF)—a decorative eight-pointed star with an open centre inside a circle.

There is no named HTML entity for U+2742. Use ❂, ❂, or \2742 in CSS content. Do not confuse ❂ with Eight Pointed Rectilinear Black Star U+2734 (✴) or Eight Pointed Pinwheel Star U+272F (✯).

⚡ Quick Reference — Circled Open Centre Eight Pointed Star

Unicode U+2742

Dingbats block

Hex Code ❂

Hexadecimal reference

HTML Code ❂

Decimal reference

Named Entity

None (use numeric refs)

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

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2742";
  }
 </style>
</head>
<body>
<p>Circled Open Centre Eight Pointed Star using Hexa Decimal: &#x2742;</p>
<p>Circled Open Centre Eight Pointed Star using HTML Code: &#10050;</p>
<p id="point">Circled Open Centre Eight Pointed Star using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Circled Open Centre Eight Pointed Star is supported in all modern browsers:

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

👀 Live Preview

See the Circled Open Centre Eight Pointed Star in decorative contexts:

Featured list ❂ Premium plan   ❂ Priority support
Section divider
Large glyph
vs related stars Open centre: ❂ (U+2742)   Rectilinear: ✴ (U+2734)   Pinwheel: ✯ (U+272F)
Monospace refs &#x2742; &#10050; \2742

🧠 How It Works

1

Hexadecimal Code

&#x2742; uses the Unicode hexadecimal value 2742 to display the star symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2742 is used in CSS stylesheets—for example in content on ::marker, ::before, or ::after.

CSS stylesheet
=

Same visual result

All three methods produce the Circled Open Centre Eight Pointed Star glyph: . Unicode U+2742 sits in the Dingbats block (U+2700–U+27BF). No named HTML entity exists.

Use Cases

The Circled Open Centre Eight Pointed Star (❂) commonly appears in:

✨ Decorative design

Bullet points, section dividers, and ornamental web elements.

🎨 Creative typography

Headers, callouts, and typographic ornaments in creative projects.

📋 Lists & bullets

Custom list markers via CSS ::marker or inline HTML.

🌟 Highlights

Featured items, premium tiers, or decorative emphasis markers.

📄 Documents

Invitations, formatted content, and print-style web layouts.

🔤 Symbol references

Unicode tables and dingbat character galleries.

♿ Accessibility

Use aria-hidden="true" when purely decorative; pair with text when meaningful.

💡 Best Practices

Do

  • Use &#x2742; or &#10050; consistently in HTML
  • Set aria-hidden="true" on purely decorative star glyphs
  • Use CSS \2742 in ::marker for custom list bullets
  • Choose fonts that support Dingbats (U+2700–U+27BF)
  • Provide visible text alongside the symbol when it conveys meaning

Don’t

  • Confuse U+2742 (❂) with U+2734 (✴) or U+272F (✯)
  • Put CSS escape \2742 inside HTML text nodes
  • Assume a named entity exists—U+2742 has none
  • Rely on the glyph alone for ratings without accessible labels
  • Mix hex and decimal styles randomly in one file

Key Takeaways

1

No named entity—use numeric references

&#x2742; &#10050;
2

For CSS stylesheets, use the escape in the content property

\2742
3

U+2742 in the Dingbats block

4

Decorative eight-pointed star with open centre

5

Three methods, one glyph — all widely supported

❓ Frequently Asked Questions

Use &#x2742; (hex), &#10050; (decimal), or \2742 in CSS content. There is no named HTML entity for U+2742.
U+2742 (CIRCLED OPEN CENTRE EIGHT POINTED STAR). Dingbats block (U+2700–U+27BF). Hex 2742, decimal 10050.
For decorative design, custom bullets, icons, creative typography, document styling, and visual emphasis in web content.
Numeric references (&#10050; or &#x2742;) go directly in HTML markup. The CSS escape \2742 is used in stylesheets, typically in the content property of pseudo-elements.
No. U+2742 has no named HTML entity. Eight Pointed Rectilinear Black Star is a different character: U+2734 (✴).

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