HTML Entity for Black Centre White Star (✬)

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

What You'll Learn

How to display BLACK CENTRE WHITE STAR (✬) in HTML and CSS. This character is U+272C in the Dingbats block (Unicode range U+2700–U+27BF). It is a five-pointed star with a filled disc in the centre and clear outer points—useful when you want a crisp dingbat star instead of an emoji or a plain asterisk.

There is no named HTML entity for U+272C. Use ✬ or ✬ in markup, or \272C in stylesheet content. Pick a font with solid Dingbats coverage so ✬ matches weight with surrounding text.

⚡ Quick Reference — Black Centre White Star

Unicode U+272C

Dingbats

Hex Code ✬

Hexadecimal reference

HTML Code ✬

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+272C
Hex code       ✬
HTML code      ✬
Named entity   —
CSS code       \272C
1

Complete HTML Example

This example shows U+272C using hexadecimal and decimal character references, plus a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\272C";
  }
 </style>
</head>
<body>
<p>Black Centre White Star using Hexa Decimal: &#x272C;</p>
<p>Black Centre White Star using HTML Code: &#10028;</p>
<p id="point">Black Centre White Star using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+272C is a BMP Dingbat; rendering depends on font support:

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

👀 Live Preview

Compare ✬ with other common star glyphs (fonts vary):

This dingbat U+272C
Large glyph
Other stars ★ ✦ ✬
Caption U+2605 black star, U+2726 black four pointed star, U+272C black centre white star
Monospace refs &#x272C; &#10028; \272C

🧠 How It Works

1

Hexadecimal Code

&#x272C; references code point U+272C using hex digits 272C after the #x prefix.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

Hex, decimal, and CSS escapes all produce . There is no named HTML entity for U+272C.

Use Cases

The Black Centre White Star (✬) is commonly used for:

📰 Headlines

Section kicker lines and hero titles that need a compact star accent.

📋 Lists

Custom bullets via list-style wrappers or inline markers in rich text.

✨ Call-outs

Featured quotes, tips, and promo strips beside short labels.

🎨 UI chrome

Badges, tags, and icon rows where a dingbat reads cleaner than bitmap icons.

📱 Social copy

Captions and bios when you want a star without switching to emoji palettes.

⭐ Ratings

Lightweight star rows when design calls for Unicode stars instead of SVG fills.

♿ Accessibility

Add visible text or aria-hidden on purely decorative ✬; use aria-label when it marks “favourite” or “featured”.

💡 Best Practices

Do

  • Scale ✬ with font-size or em units so it matches heading weight
  • Prefer numeric references in CMS and email-like HTML for predictable decoding
  • Test on mobile system fonts; swap to a bundled serif/sans with Dingbats if the glyph looks thin
  • Use \272C only inside CSS content, not inside HTML text nodes
  • Pair meaningful stars with words (“Featured”, “New”) for clarity

Don’t

  • Assume ✬ carries the same semantics as ★, ⭐, or rating SVGs without defining it
  • Overload a page with decorative stars where plain hierarchy (headings, spacing) would read better
  • Use tiny grey ✬ as the only cue for critical actions or legal notices
  • Forget RTL: inline stars can shift alignment in right-to-left locales
  • Mix multiple star code points in one pattern without checking each glyph in target fonts

Key Takeaways

1

Two numeric references render the same glyph

&#x272C; &#10028;
2

CSS content escape

\272C
3

U+272C lives in the Dingbats block

4

No &name; entity; plan on hex or decimal in HTML

5

Decorate with intent: combine ✬ with typography, not instead of structure

❓ Frequently Asked Questions

Use &#x272C; (hex), &#10028; (decimal), or \272C in CSS content. There is no named entity; all valid methods render ✬.
U+272C (hex 272C, decimal 10028). Dingbats block. Unicode name BLACK CENTRE WHITE STAR.
When you want this specific dingbat star in UTF-8 HTML instead of an image, emoji, or CSS-drawn star.
Numeric references belong in HTML. The \272C escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x272C;, &#10028;, or \272C in CSS depending on whether you are authoring markup or styles.

Explore More HTML Entities!

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