HTML Entity for Open Centre Black Star (✫)

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

What You'll Learn

How to display the Open Centre Black Star (✫) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+272B (OPEN CENTRE BLACK STAR) in the Dingbats block (U+2700–U+27BF)—a black star with an open centre, useful for decorative accents, ratings, favorites, list markers, and symbolic typography.

Render it with ✫, ✫, or CSS escape \272B. There is no named HTML entity. Do not confuse ✫ with the solid black star U+2605 (★), open centre asterisk U+2732 (✲), or circled white star U+272A (✪).

⚡ Quick Reference — Open Centre Black Star

Unicode U+272B

Dingbats block

Hex Code ✫

Hexadecimal reference

HTML Code ✫

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+272B
Hex code       ✫
HTML code      ✫
Named entity   (none)
CSS code       \272B
Meaning        Open centre black star (Dingbats)
Related        U+2605 = black star (★)
               U+2732 = open centre asterisk (✲)
               U+272A = circled white star (✪)
               U+272E = heavy outlined black star (✮)
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: "\272B";
  }
 </style>
</head>
<body>
<p>Open centre black star (hex): &#x272B;</p>
<p>Open centre black star (decimal): &#10027;</p>
<p id="point">Open centre black star (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Open Centre Black Star (✫) is widely supported in all modern browsers:

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

👀 Live Preview

See the Open Centre Black Star (✫) in decorative and design contexts:

Single symbol
Rating style ✫✫✫✫☆ 4 of 5
Featured label ✫ Editor’s pick
Not the same as Black star ★  |  Asterisk ✲  |  Circled ✪
Numeric refs &#x272B; &#10027; \272B

🧠 How It Works

1

Hexadecimal Code

&#x272B; uses the Unicode hexadecimal value 272B to display the open centre black star.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Decorative star result

All three methods render . Unicode U+272B in the Dingbats block. Next: Open Centre Cross (✛).

Use Cases

The Open Centre Black Star (✫) is commonly used in:

⭐ Ratings & favorites

Star ratings, bookmark indicators, and featured-item labels in UI copy.

🎨 Design accents

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

📄 Custom bullets

Distinct list markers and highlight bullets beyond default disc styles.

📝 Editorial marks

Editor’s picks, recommended items, and special-callout markers in content.

💻 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 &#x272B; or &#10027; for inline decorative stars
  • Use CSS \272B in ::before for custom list bullets or icons
  • Set <meta charset="utf-8"> for reliable rendering
  • Pick one numeric style per project for consistency
  • Provide text labels alongside star symbols in ratings UI

Don’t

  • Confuse ✫ with solid black star ★ (U+2605) or open centre asterisk ✲ (U+2732)
  • Use padded Unicode notation like U+0272B—the correct value is U+272B
  • Use CSS escape \272B in HTML text nodes
  • Use ✫ as the sole indicator in accessible ratings without text or ARIA
  • Assume every font renders Dingbats identically—test your typeface

Key Takeaways

1

Two HTML numeric references plus CSS for U+272B

&#x272B; &#10027;
2

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

3

Unicode U+272B — OPEN CENTRE BLACK STAR in Dingbats

4

Distinct from solid ★, asterisk ✲, and circled ✪

❓ Frequently Asked Questions

Use &#x272B; (hex), &#10027; (decimal), or \272B in CSS content. There is no named entity. All three render ✫.
U+272B (OPEN CENTRE BLACK STAR). Dingbats block (U+2700–U+27BF). Hex 272B, decimal 10027.
No. ✫ (U+272B) is a Dingbats star with an open centre. ★ (U+2605) is BLACK STAR—a solid filled star in Miscellaneous Symbols. They look different and use different code points.
For decorative star accents, ratings and favorites UI, list markers, badges, editorial highlights, and any design needing a Dingbats star with an open centre.
Named HTML entities cover a subset of common characters. U+272B uses numeric hex or decimal codes or CSS escapes, which is standard for Dingbats decorative 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