HTML Entity for Pinwheel Star (✯)

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

What You'll Learn

How to display the Pinwheel Star (✯) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+272F (PINWHEEL STAR) in the Dingbats block (U+2700–U+27BF)—a decorative pinwheel-style star useful for ratings, badges, bullet points, creative typography, and ornamental web design.

Render it with ✯, ✯, or CSS escape \272F. There is no named HTML entity. Do not confuse ✯ with U+2735 (✵, eight pointed pinwheel star), U+272E (✮, heavy outlined black star), or U+2730 (✰, shadowed white star).

⚡ Quick Reference — Pinwheel Star

Unicode U+272F

Dingbats block

Hex Code ✯

Hexadecimal reference

HTML Code ✯

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+272F
Hex code       ✯
HTML code      ✯
Named entity   (none)
CSS code       \272F
Meaning        Pinwheel star (Dingbats)
Related        U+272E = heavy outlined black star (✮)
               U+2730 = shadowed white star (✰)
               U+2735 = eight pointed pinwheel star (✵)
               U+2605 = 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: "\272F";
  }
 </style>
</head>
<body>
<p>Pinwheel star (hex): &#x272F;</p>
<p>Pinwheel star (decimal): &#10031;</p>
<p id="point">Pinwheel star (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Pinwheel Star (✯) is widely supported in all modern browsers:

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

👀 Live Preview

See the Pinwheel Star (✯) in decorative and UI contexts:

Single symbol
Rating style ✯✯✯✯☆ 4 of 5
Featured label ✯ Top pick
Not the same as Eight-pointed ✵  |  Heavy ✮  |  Solid ★
Numeric refs &#x272F; &#10031; \272F

🧠 How It Works

1

Hexadecimal Code

&#x272F; uses the Unicode hexadecimal value 272F to display the pinwheel star.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\272F 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+272F in the Dingbats block. Next: Pitchfork (⋔).

Use Cases

The Pinwheel Star (✯) is commonly used in:

⭐ Ratings & favorites

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

🎨 Design accents

Decorative pinwheel shapes in headers, badges, cards, and typography layouts.

📄 Custom bullets

Distinct list markers and highlight bullets for featured items.

🎮 Game & app UI

Level indicators, achievement stars, and playful interface accents.

📝 Editorial marks

Top picks, recommended items, and special-callout markers in content.

📋 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 &#x272F; or &#10031; for inline decorative stars
  • Use CSS \272F 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 eight-pointed ✵, heavy ✮, or solid ★
  • Use padded Unicode notation like U+0272F—the correct value is U+272F
  • Use CSS escape \272F 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+272F

&#x272F; &#10031;
2

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

3

Unicode U+272F — PINWHEEL STAR in Dingbats

4

Distinct from eight-pointed pinwheel ✵ and heavy outlined ✮

5

Previous: Phi (ɸ)   Next: Pitchfork (⋔)

❓ Frequently Asked Questions

Use &#x272F; (hex), &#10031; (decimal), or \272F in CSS content. There is no named entity. All three render ✯.
U+272F (PINWHEEL STAR). Dingbats block (U+2700–U+27BF). Hex 272F, decimal 10031.
No. ✯ (U+272F) is PINWHEEL STAR. ✵ (U+2735) is EIGHT POINTED PINWHEEL STAR. They are adjacent Dingbats characters with different glyphs and use cases.
For decorative accents, star ratings, badges, custom bullets, creative typography, game or app UI, product highlights, and any content needing a distinctive pinwheel-style star symbol.
Named HTML entities cover a subset of common characters. U+272F 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