HTML Entity for Eight Pointed Pinwheel Star (✵)

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

What You'll Learn

How to display the Eight Pointed Pinwheel Star (✵) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2735 (EIGHT POINTED PINWHEEL STAR) in the Dingbats block (U+2700–U+27BF)—a decorative pinwheel-style star used in ratings, awards, decorative UI, bullet points, and star-based web projects.

Render it with ✵, ✵, or CSS escape \2735. There is no named HTML entity for this symbol. Compare ✴ (eight pointed black star, U+2734) or ✷ (eight pointed rectilinear black star, U+2737) for related Dingbats characters.

⚡ Quick Reference — Eight Pointed Pinwheel Star

Unicode U+2735

Dingbats block

Hex Code ✵

Hexadecimal reference

HTML Code ✵

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2735
Hex code       ✵
HTML code      ✵
Named entity   (none)
CSS code       \2735
Related        U+2734 = Black star (✴); U+2737 = Rectilinear star (✷)
1

Complete HTML Example

This example demonstrates the Eight Pointed Pinwheel Star (✵) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2735";
  }
 </style>
</head>
<body>
<p>Eight Pointed Pinwheel Star using Hexadecimal: &#x2735;</p>
<p>Eight Pointed Pinwheel Star using HTML Code: &#10037;</p>
<p id="point">Eight Pointed Pinwheel Star using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2735 is supported in modern browsers when rendered with a font that includes Dingbats:

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

👀 Live Preview

See the Eight Pointed Pinwheel Star (✵) in rating and UI contexts:

Large glyph
Rating ✵✵✵✵✵ 5 stars
Award ✵ Achievement unlocked
Featured ✵ Highlighted product
Numeric refs &#x2735; &#10037;

🧠 How It Works

1

Hexadecimal Code

&#x2735; uses the Unicode hexadecimal value 2735 to display the Eight Pointed Pinwheel Star. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2735 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+2735 in the Dingbats block (U+2700–U+27BF). No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Eight Pointed Pinwheel Star (✵) is commonly used in:

⭐ Rating systems

Star ratings on review sites, product pages, and feedback UI.

🏆 Awards & badges

Achievements, levels, and certification content in apps and games.

✨ Decorative headers

Bullet points, section dividers, and ornamental list markers.

💻 UI & icons

Star-based icons in navigation, buttons, and toolbars.

📦 Product listings

Featured or highlighted items with star symbols.

📚 Education

Quizzes, scores, and difficulty indicators in learning content.

💡 Best Practices

Do

  • Use &#x2735; or &#10037; consistently in markup
  • Use fonts that support Dingbats (system UI, Segoe UI Symbol, Symbola)
  • Add aria-label with clear meaning (e.g. “4 out of 5 stars” or “featured item”)
  • Pair ✵ with visible text in ratings and star-based UI
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+2735
  • Confuse ✵ (pinwheel star) with ✴ (black star U+2734) or ✷ (rectilinear star U+2737)
  • Put CSS escape \2735 in HTML text nodes
  • Rely on the symbol alone in accessibility-critical interfaces
  • Assume decorative fonts include all Dingbats characters

Key Takeaways

1

Two HTML numeric references render ✵

&#x2735; &#10037;
2

For CSS stylesheets, use the escape in the content property

\2735
3

Unicode U+2735 — EIGHT POINTED PINWHEEL STAR

4

Dingbats block (U+2700–U+27BF)

5

Three methods, one glyph — no named HTML entity

❓ Frequently Asked Questions

Use &#x2735; (hex), &#10037; (decimal), or \2735 in CSS content. There is no named entity. All produce ✵.
U+2735 (EIGHT POINTED PINWHEEL STAR). Dingbats block (U+2700–U+27BF). Hex 2735, decimal 10037. A decorative star used in ratings, awards, and star-based UI.
In rating systems and review interfaces, award and achievement badges, decorative headers and bullet points, game or app UI for levels or stars, product highlights, and any content requiring a distinct pinwheel star symbol in HTML.
HTML references (&#10037; or &#x2735;) go in markup. The CSS escape \2735 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named entities cover common ASCII, Latin-1, and frequently used symbols. Many Dingbats characters including U+2735 have no named entity—use &#x2735; or &#10037; in HTML.

Explore More HTML Entities!

Discover 1500+ HTML character references — Dingbats, stars, math operators, 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