HTML Entity for Twelve Pointed Black Star (✹)

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

What You'll Learn

How to display the Twelve Pointed Black Star (✹) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2739 (TWELVE POINTED BLACK STAR) in the Dingbats block (U+2700–U+27BF)—a decorative twelve-pointed star used in creative web design, iconography, visual emphasis, and special UI elements.

Render it with ✹, ✹, or CSS escape \2739. There is no named HTML entity for this symbol. Compare ✶ (six pointed black star, U+2736) or ✸ (heavy eight pointed rectilinear black star, U+2738) for related Dingbats characters.

⚡ Quick Reference — Twelve Pointed Black Star

Unicode U+2739

Dingbats block

Hex Code ✹

Hexadecimal reference

HTML Code ✹

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2739
Hex code       ✹
HTML code      ✹
Named entity   (none)
CSS code       \2739
Related        U+2736 = Six pointed star (✶); U+2738 = Heavy eight pointed star (✸)
1

Complete HTML Example

This example demonstrates the Twelve Pointed Black Star (✹) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2739";
  }
 </style>
</head>
<body>
<p>Twelve Pointed Black Star using Hexadecimal: &#x2739;</p>
<p>Twelve Pointed Black Star using HTML Code: &#10041;</p>
<p id="point">Twelve Pointed Black Star using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2739 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 Twelve Pointed Black Star (✹) in decorative and UI contexts:

Large glyph
Featured ✹ Highlighted item
Decorative ✹ Creative design element
Iconography ✹ Special badge
Numeric refs &#x2739; &#10041;

🧠 How It Works

1

Hexadecimal Code

&#x2739; uses the Unicode hexadecimal value 2739 to display the Twelve Pointed Black Star. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2739 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+2739 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 Twelve Pointed Black Star (✹) is commonly used in:

🎨 Creative web design

Landing pages, portfolios, and creative projects with distinctive star imagery.

💻 Iconography

Icon sets, UI elements, and interface designs that need star symbols.

✨ Visual emphasis

Highlights, callouts, and decorative accents in content.

🌟 Decorative content

Graphic design, logos, and ornamental list markers.

⚙️ Special UI elements

Buttons, badges, and interactive elements with star imagery.

📚 Education

Tutorials and instructional content about symbols and design.

💡 Best Practices

Do

  • Use &#x2739; or &#10041; consistently in markup
  • Use fonts that support Dingbats (system UI, Segoe UI Symbol, Symbola)
  • Add aria-label with clear meaning (e.g. “featured item” or “decorative star”)
  • Pair ✹ with visible text in UI and decorative contexts
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+2739
  • Confuse ✹ (twelve pointed black star) with ✶ (six pointed star U+2736) or ★ (black star U+2605)
  • Put CSS escape \2739 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 ✹

&#x2739; &#10041;
2

For CSS stylesheets, use the escape in the content property

\2739
3

Unicode U+2739 — TWELVE POINTED BLACK STAR

4

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

5

Three methods, one glyph — no named HTML entity

❓ Frequently Asked Questions

Use &#x2739; (hex), &#10041; (decimal), or \2739 in CSS content. There is no named entity. All produce ✹.
U+2739 (TWELVE POINTED BLACK STAR). Dingbats block (U+2700–U+27BF). Hex 2739, decimal 10041. A decorative star used in creative web design, iconography, and visual emphasis.
In creative web design, iconography, visual emphasis, decorative content, special UI elements, featured highlights, and any content that needs distinctive star imagery.
HTML references (&#10041; or &#x2739;) go in markup. The CSS escape \2739 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+2739 have no named entity—use &#x2739; or &#10041; 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