HTML Entity for Eight Pointed Pinwheel Star (✵)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2735

What Is Eight Pointed Pinwheel Star?

Eight pointed pinwheel star (✵) is the Unicode character at U+2735 in Dingbats. Official name: EIGHT POINTED PINWHEEL STAR. It is a pinwheel-style eight-point decorative star — useful for ratings, awards, and star UI accents.

Remember
Character     ✵
Unicode       U+2735
Hex entity    ✵
Decimal       ✵
CSS escape    \2735
Named entity  (none)
Not the same  ✴ (black) · ✷ (rectilinear) · ✶ (6-point)

Prefer ✵ or ✵ in HTML (no named form). You can also type ✵ in a UTF-8 document.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNone—
Hex entity✵HTML markup (preferred)
Decimal entity✵HTML markup
Direct character✵HTML text (UTF-8)
CSS escape\2735Stylesheet content
Black star (related)✴ (✴, U+2734)Solid rays — not pinwheel

When to Use Which

SituationUse
Eight-pointed pinwheel star✵ or type ✵
Solid black / rectilinear starU+2734 · U+2737
Six-pointed black starU+2736 (✶)
Eight-petalled floretteU+2741 (❁) — flower, not star
Generated text via ::before / ::aftercontent: "\2735"

Live Preview

Eight pointed pinwheel star rendered alone, as a rating, and compared with related ornaments.

Glyph ✵
Large glyph ✵
Rating ✵✵✵✵✵
Compared ✵   ✴   ✷   ✶   ❁
With entities Hex: ✵ | Decimal: ✵

Complete HTML Example

One page that shows Eight Pointed Pinwheel Star with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to display ✵ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Eight Pointed Pinwheel Star (U+2735) in HTML</title>
  <style>
    #point::after {
      content: "\2735";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x2735;</p>
  <p>Built with Decimal: &#10037;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ✵</p>
  <p>Rating: ✵✵✵✵✵</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: &#x2735; inserts code point U+2735 → ✵.

2. Decimal: same code point as 10037 → &#10037;. Same visual as hex.

3. CSS: use \2735 in content (not an HTML entity). #point::after appends ✵.

4. Typed: paste ✵ in a UTF-8 document, or build a rating row like ✵✵✵✵✵.

Pitfalls & Tips

Common mistakes when working with Eight Pointed Pinwheel Star.

Name

No named entity

There is no HTML5 named entity for U+2735. Use &#x2735; or &#10037;.

✴

Not a solid black star

U+2734 is a solid eight-point star. U+2735 is the pinwheel style.

✷

Not a rectilinear star

U+2737 has straight, geometric rays. This character is the pinwheel form.

CSS vs HTML

Do not mix escapes

\2735 belongs in CSS strings. &#x2735; / &#10037; belong in HTML.

Fonts

Dingbats font coverage

Some fonts omit Dingbats stars. Prefer a font with solid Dingbats coverage.

a11y

Add accessible text

A lone ornamental glyph can be unclear to screen readers. Pair ratings with visible text (for example “4 of 5”) or mark decorative uses with aria-hidden="true".

Semicolon

End references

Always finish numeric entities with ; — write &#x2735;, not &#x2735.

Browser Support

Eight pointed pinwheel star (U+2735) and its entity forms (&#x2735;, &#10037;, CSS \\2735) are supported in all mainstream browsers. Visible glyphs depend on Dingbats font coverage.

✓ Universal support

Eight Pointed Pinwheel Star (&#x2735;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2735 / entities Full support

Bottom line: Prefer &#x2735; in HTML (no named form). Use &#10037; when decimal form is required, and \\2735 only inside CSS content.

Key Takeaways

  • Unicode: eight pointed pinwheel star is U+2735 (decimal 10037) — glyph ✵.
  • HTML: no named entity — use &#x2735; / &#10037; / type ✵.
  • CSS: use \2735 inside content for generated text.
  • Shape: pinwheel star ≠ solid ✴ ≠ rectilinear ✷.

One line: U+2735 → &#x2735; / &#10037; / CSS \2735.

Frequently Asked Questions

Use &#x2735; (hex), &#10037; (decimal), type ✵ directly in UTF-8, or the CSS escape \2735 in content. There is no named HTML entity for U+2735.
U+2735 (EIGHT POINTED PINWHEEL STAR). Hex 2735, decimal 10037. It belongs to the Dingbats block (U+2700–U+27BF).
No. Use numeric forms &#10037; or &#x2735;. Related stars such as U+2734 (black) and U+2737 (rectilinear) also have no named HTML entities.
Use it when you want a pinwheel-style eight-point star for ratings, awards, or decorative UI. Prefer U+2734 for a solid black star, and U+2737 for a rectilinear eight-point star.
HTML entities (&#10037; or &#x2735;) go in markup. The CSS escape \2735 goes in stylesheet strings (usually content on ::before/::after).
No. U+2735 is ✵ (eight-pointed pinwheel star). U+2734 is ✴ (eight-pointed black star). U+2737 is ✷ (eight-pointed rectilinear black star).

Did you know?

Eight pointed pinwheel star is Unicode U+2735 (decimal 10037) — glyph ✵ (EIGHT POINTED PINWHEEL STAR) in Dingbats. There is no HTML5 named entity; use &#x2735; or &#10037;. Nearby stars include U+2734 (✴, black), U+2737 (✷, rectilinear), and U+2736 (✶, six-pointed).

Next: Eight Pointed Rectilinear Black Star

Learn the HTML entity for eight pointed rectilinear black star (U+2737).

Eight Pointed Rectilinear Black Star tutorial →

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