HTML Entity for Eight Pointed Black Star (✴)

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

What Is Eight Pointed Black Star?

Eight pointed black star (✴) is the Unicode character at U+2734 in Dingbats. Official name: EIGHT POINTED BLACK STAR. It is a solid eight-point decorative star — useful for ratings, awards, and star UI accents.

Remember
Character     ✴
Unicode       U+2734
Hex entity    ✴
Decimal       ✴
CSS escape    \2734
Named entity  (none)
Not the same  ✵ (pinwheel) · ✷ (rectilinear) · ❁ (florette)

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\2734Stylesheet content
Pinwheel star (related)✵ (✵, U+2735)Pinwheel style — not solid rays

When to Use Which

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

Live Preview

Eight pointed black 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 Black 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 Black Star (U+2734) in HTML</title>
  <style>
    #point::after {
      content: "\2734";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x2734;</p>
  <p>Built with Decimal: &#10036;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ✴</p>
  <p>Rating: ✴✴✴✴✴</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: &#x2734; inserts code point U+2734 → ✴.

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

3. CSS: use \2734 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 Black Star.

Name

No named entity

There is no HTML5 named entity for U+2734. Use &#x2734; or &#10036;.

✵

Not a pinwheel star

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

❁

Not an eight-petalled florette

U+2741 is a flower ornament. This character is a star.

CSS vs HTML

Do not mix escapes

\2734 belongs in CSS strings. &#x2734; / &#10036; 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 &#x2734;, not &#x2734.

Browser Support

Eight pointed black star (U+2734) and its entity forms (&#x2734;, &#10036;, CSS \\2734) are supported in all mainstream browsers. Visible glyphs depend on Dingbats font coverage.

✓ Universal support

Eight Pointed Black Star (&#x2734;)

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+2734 / entities Full support

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

Key Takeaways

  • Unicode: eight pointed black star is U+2734 (decimal 10036) — glyph ✴.
  • HTML: no named entity — use &#x2734; / &#10036; / type ✴.
  • CSS: use \2734 inside content for generated text.
  • Shape: solid eight-point star ≠ pinwheel ✵ ≠ florette ❁.

One line: U+2734 → &#x2734; / &#10036; / CSS \2734.

Frequently Asked Questions

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

Did you know?

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

Next: Eight Pointed Pinwheel Star

Learn the HTML entity for eight pointed pinwheel star (U+2735).

Eight Pointed Pinwheel 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