HTML Entity for Heavy Outlined Black Star (✮)

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

What You'll Learn

How to display the Heavy Outlined Black Star (✮) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+272E (HEAVY OUTLINED BLACK STAR) in the Dingbats block (U+2700–U+27BF). It is a heavy outlined black star—ideal for star ratings, featured or highlight indicators, decorative bullets, awards, and typographic accents where a distinct Dingbats star is needed beyond solid stars like U+2605 (★) or white outlined U+272F (✯).

Render it with ✮, ✮, or CSS escape \272E. There is no named HTML entity. Do not confuse ✮ with U+2724 (✤, balloon spoked asterisk) or U+2731 (✱, heavy asterisk); each Dingbats star has a different shape and meaning.

⚡ Quick Reference — Outlined Black Star

Unicode U+272E

Dingbats block

Hex Code ✮

Hexadecimal reference

HTML Code ✮

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+272E
Hex code       ✮
HTML code      ✮
Named entity   (none)
CSS code       \272E
Meaning        Heavy outlined black star
Related        U+2605 = black star (★)
               U+272F = outlined white star (✯)
               U+2606 = white star (☆)
1

Complete HTML Example

This example demonstrates the Heavy Outlined Black Star (✮) using hexadecimal code, decimal HTML code, and CSS content for a rating row and featured badge:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\272E";
  }
 </style>
</head>
<body>
<p>Outlined Black Star using Hexadecimal: &#x272E;</p>
<p>Outlined Black Star using HTML Code: &#10030;</p>
<p id="point">Outlined Black Star using CSS Entity</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Heavy Outlined Black Star (✮) is widely supported in modern browsers when the font includes Dingbats star glyphs:

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

👀 Live Preview

Heavy Outlined Black Star (✮) in context, compared with other star symbols:

Rating ✮✮✮✮☆
Featured ✮ Featured
List bullet ✮ Top-rated item
Large glyph
Comparison ✮   ★   ✯
Numeric refs &#x272E; &#10030; \272E

🧠 How It Works

1

Hexadecimal Code

&#x272E; uses the Unicode hexadecimal value 272E to display the outlined black star. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\272E is used in CSS stylesheets, particularly in content on ::before for rating stars, list bullets, and badges.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+272E is in the Dingbats block. Next: Heavy Right Arrow (➙).

Use Cases

The Heavy Outlined Black Star (✮) is commonly used in:

✮ Ratings

Product reviews, rating displays (e.g. ✮✮✮✮☆), and quality indicators.

⭐ Featured

“Featured” or “top pick” indicators, editor’s choice, and highlight badges.

📋 Bullets

Custom list markers and bullet styles with a distinct star bullet.

🏆 Awards

Award icons, achievement badges, and premium or pro indicators.

🔨 CSS content

content: "\272E" on ::before without extra markup.

🔖 Favorites

Favorite or bookmark icons, save or wishlist indicators.

💡 Best Practices

Do

  • Add aria-label on rating rows (e.g. “4 out of 5 stars”)
  • Use content: "\272E " via li::before for star bullets
  • Declare UTF-8 with <meta charset="utf-8">
  • Keep one numeric style (hex or decimal) per project
  • Pair empty stars with U+2606 (☆) for contrast in ratings
  • Mark purely decorative stars with aria-hidden="true" when appropriate

Don’t

  • Rely on glyph-only stars without accessible rating text
  • Confuse U+272E (✮) with U+2605 (★) or U+272F (✯)
  • Expect a named HTML entity for U+272E
  • Use CSS \272E in HTML text nodes
  • Mix unrelated star code points in one rating UI without testing fonts

Key Takeaways

1

Two HTML numeric references plus CSS insert U+272E

&#x272E; &#10030;
2

For CSS, use \272E in the content property

3

Unicode U+272E — heavy outlined black star (✮)

4

Distinct from solid U+2605 (★) and white outline U+272F (✯)

❓ Frequently Asked Questions

Use &#x272E; (hex), &#10030; (decimal), or \272E in CSS content. There is no named entity. All three methods render the symbol (✮) correctly.
U+272E (HEAVY OUTLINED BLACK STAR). Dingbats block. Hex 272E, decimal 10030. The symbol (✮) is a heavy outlined black star, often used for ratings, highlights, and decorative content.
For star ratings and reviews, featured or highlight indicators, decorative typography and bullets, awards and badges, favorites, and any UI that needs a distinct outlined star symbol.
HTML references (&#10030; or &#x272E;) go in markup. The CSS escape \272E is used in stylesheets, typically on ::before or ::after. Both produce ✮.
Named entities cover common ASCII, Latin-1, and widely used symbols. U+272E uses numeric hex (&#x272E;) or decimal (&#10030;) codes, which is standard for Dingbats star 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