HTML Entity for Six Pointed Black Star (✶)

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

What You'll Learn

How to display the Six Pointed Black Star (✶) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+2736 (SIX POINTED BLACK STAR) in the Dingbats block (U+2700–U+27BF)—a decorative six-pointed star used in typography, bullet lists, and creative web design.

Render it with ✶, ✶, the named entity ✶, or CSS \2736. Do not confuse ✶ with the mathematical asterisk operator U+2217 (∗, ∗) or the eight-pointed pinwheel star U+2735 (✵).

⚡ Quick Reference — Six Pointed Black Star

Unicode U+2736

Dingbats

Hex Code ✶

Hexadecimal reference

HTML Code ✶

Decimal reference

Named Entity ✶

Standard HTML named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2736
Hex code       ✶
HTML code      ✶
Named entity   ✶
CSS code       \2736
Official name  Six pointed black star
Not the same   U+2217 = ∗ (∗ asterisk operator)
               U+2735 = ✵ (eight pointed pinwheel star)
Block          Dingbats (U+2700–U+27BF)
1

Complete HTML Example

A simple example showing ✶ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2736";
  }
 </style>
</head>
<body>
<p>Star (hex): &#x2736;</p>
<p>Star (decimal): &#10038;</p>
<p>Star (named): &sext;</p>
<p id="point">Star (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Six Pointed Black Star (✶) is supported in modern browsers when fonts include Dingbats glyphs:

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

👀 Live Preview

See the six pointed black star in decorative contexts:

Single symbol
Decorative row ✶ ✶ ✶ ✶
Named entity &sext; renders as ✶
List marker ✶ Featured item
Numeric refs &#x2736; &#10038; &sext; \2736

🧠 How It Works

1

Hexadecimal Code

&#x2736; uses Unicode hexadecimal 2736 to display the six pointed black star.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&sext; is the standard HTML named entity for U+2736—readable and preferred in HTML source when available.

HTML markup
4

CSS Entity

\2736 is used in CSS stylesheets in the content property of pseudo-elements.

CSS stylesheet
=

Decorative star result

All four methods render . Unicode U+2736 in Dingbats. Next: Sixteen Pointed Asterisk.

Use Cases

The Six Pointed Black Star (✶) commonly appears in:

🎨 Decorative design

Ornamental accents, artistic layouts, and creative web projects.

📄 Typography

Section dividers, emphasis markers, and decorative text elements.

📝 List bullets

Custom bullet points in lists, menus, and navigation.

⭐ Featured content

Highlighting special items, ratings, and premium sections.

🛠 CSS markers

Custom list bullets via ::before content.

📖 Symbol guides

Dingbats and HTML entity reference documentation.

💡 Best Practices

Do

  • Use &sext; for readable HTML source in decorative markup
  • Add descriptive text or aria-label when used as a UI marker
  • Use CSS content: "\2736" for reusable bullet components
  • Scale with font-size to match your design
  • Test rendering across browsers and fonts

Don’t

  • Use U+02736 or CSS \02736—the correct value is U+2736 and \2736
  • Confuse ✶ with asterisk operator ∗ (&lowast;)
  • Put CSS escape \2736 in HTML text nodes
  • Use purely decorative stars without accessibility context
  • Assume every star symbol is U+2736

Key Takeaways

1

Four ways to render U+2736 in HTML and CSS

&#x2736; &sext;
2

Named entity &sext; is the most readable option in HTML markup

3

Unicode U+2736 — SIX POINTED BLACK STAR

4

Dingbats decorative star—not the same as math asterisk ∗

❓ Frequently Asked Questions

Use &#x2736; (hex), &#10038; (decimal), &sext; (named entity), or \2736 in CSS content. All four render ✶.
U+2736 (SIX POINTED BLACK STAR). Dingbats (U+2700–U+27BF). Hex 2736, decimal 10038, named entity &sext;.
No. ✶ (U+2736) is a decorative six-pointed black star in Dingbats. ∗ (U+2217) is the ASTERISK OPERATOR used in mathematics with entity &lowast;.
For decorative symbols, custom list bullets, typography accents, creative web design, emphasis markers, featured content highlights, and ornamental UI elements.
HTML code (&sext;, &#10038;, or &#x2736;) is used directly in HTML content. CSS entity \2736 is used in stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

Explore More HTML Entities!

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