HTML Entity for Outlined Black Star (✭)

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

What You'll Learn

How to display the Outlined Black Star (✭) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+272D (OUTLINED BLACK STAR) in the Dingbats block (U+2700–U+27BF)—an outlined star useful for ratings, featured labels, decorative bullets, badges, and symbolic typography.

Render it with ✭, ✭, or CSS escape \272D. There is no named HTML entity. Do not confuse ✭ with U+272E (✮, heavy outlined black star), U+2605 (★, solid black star), or U+272B (✫, open centre black star).

⚡ Quick Reference — Outlined Black Star

Unicode U+272D

Dingbats block

Hex Code ✭

Hexadecimal reference

HTML Code ✭

Decimal reference

Named Entity

Use numeric codes only

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

🌐 Browser Support

The Outlined Black Star (✭) is widely supported in all modern browsers:

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

👀 Live Preview

See the Outlined Black Star (✭) in decorative and UI contexts:

Single symbol
Rating style ✭✭✭✭☆ 4 of 5
Featured label ✭ Editor’s pick
Not the same as Heavy ✮  |  Solid ★  |  Open ✫
Numeric refs &#x272D; &#10029; \272D

🧠 How It Works

1

Hexadecimal Code

&#x272D; uses the Unicode hexadecimal value 272D to display the outlined black star.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\272D 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+272D in the Dingbats block. Next: Outlined Greek Cross (✙).

Use Cases

The Outlined Black Star (✭) is commonly used in:

⭐ Ratings & favorites

Star ratings, bookmark indicators, and review scores in UI copy.

🎨 Design accents

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

📄 Custom bullets

Distinct list markers and highlight bullets for featured items.

📝 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 ✭ with visible text; provide ARIA labels on icon-only rating controls.

💡 Best Practices

Do

  • Use &#x272D; or &#10029; for inline decorative stars
  • Use CSS \272D in ::before for custom list bullets or icons
  • Set <meta charset="utf-8"> for reliable rendering
  • Provide text labels alongside star symbols in ratings UI
  • Pick one numeric style per project for consistency

Don’t

  • Confuse ✭ with heavy outlined ✮, solid ★, or open ✫
  • Use padded Unicode notation like U+0272D—the correct value is U+272D
  • Use CSS escape \272D 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+272D

&#x272D; &#10029;
2

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

3

Unicode U+272D — OUTLINED BLACK STAR in Dingbats

4

Lighter outline than heavy ✮; distinct from solid ★

❓ Frequently Asked Questions

Use &#x272D; (hex), &#10029; (decimal), or \272D in CSS content. There is no named entity. All three render ✭.
U+272D (OUTLINED BLACK STAR). Dingbats block (U+2700–U+27BF). Hex 272D, decimal 10029.
No. ✭ (U+272D) is OUTLINED BLACK STAR with a lighter outline. ✮ (U+272E) is HEAVY OUTLINED BLACK STAR with a bolder outline. They are adjacent code points with different glyphs.
For star ratings, featured-item labels, decorative bullets, badges, typography accents, and any UI needing a lighter outlined star distinct from solid or heavy star dingbats.
Named HTML entities cover a subset of common characters. U+272D 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