HTML Entity for Black Four Pointed Star (✦)

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

What You'll Learn

How to display Black Four Pointed Star (✦) in HTML and CSS. This character is U+2726 in the Dingbats block (U+2700–U+27BF), approved in Unicode 1.1 (1993). It is a four-pointed diamond-shaped star—a classic typographic ornament for ratings, bullets, section dividers, and decorative accents.

There is no named HTML entity for U+2726. Use ✦ or ✦ in markup, or \2726 in stylesheet content. The symbol suits web design, icons, ratings, and typographic embellishment. Pair star glyphs with visible text or aria-label when they convey meaning.

⚡ Quick Reference — Black Four Pointed Star

Unicode U+2726

Dingbats (U+2700–U+27BF)

Hex Code ✦

Hexadecimal reference

HTML Code ✦

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2726
Hex code       ✦
HTML code      ✦
Named entity   —
CSS code       \2726
1

Complete HTML Example

This example shows U+2726 using hexadecimal and decimal character references, plus a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2726";
  }
 </style>
</head>
<body>
<p>Black Four Pointed Star using Hexa Decimal: &#x2726;</p>
<p>Black Four Pointed Star using HTML Code: &#10022;</p>
<p id="point">Black Four Pointed Star using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2726 is widely supported in modern browsers; dingbat artwork varies by typeface:

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

👀 Live Preview

See the glyph at different sizes and beside related star Dingbats (font-dependent):

Large glyph
Rating row ✦✦✦✦✦ 5 of 5
Star pair (U+2726 & U+2727) ✦ ✧
Caption U+2726 is BLACK FOUR POINTED STAR; U+2727 is WHITE FOUR POINTED STAR in Dingbats.
Monospace refs &#x2726; &#10022; \2726

🧠 How It Works

1

Hexadecimal Code

&#x2726; references code point U+2726 using hex digits 2726 after the #x prefix.

HTML markup
2

Decimal HTML Code

&#10022; is the decimal equivalent (10022) for the same Black Four Pointed Star character.

HTML markup
3

CSS Entity

\2726 is the CSS escape for U+2726, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

Hex, decimal, and CSS escapes all produce . There is no named HTML entity for U+2726.

Use Cases

The Black Four Pointed Star (✦) is commonly used for:

⭐ Ratings & reviews

Star ratings, reviews, and quality indicators in e-commerce and content sites.

📋 Bullet points

Alternative list markers and emphasis indicators in content.

📝 Section separators

Dividers between sections, pull quotes, and typographic ornamentation.

🎨 Decorative design

Web design accents, icons, headers, borders, and ornamental elements.

📝 Typography

Classic typographic ornamentation and printer’s ornaments.

💬 Social & messaging

Decorative accents in posts, captions, and messages.

♿ Accessibility

Pair ✦ with text or ARIA when used for ratings or decorative markers.

💡 Best Practices

Do

  • Use hex or decimal consistently—there is no named entity for U+2726
  • Pair ✦ with star themes; related symbols include ✧ (white four pointed star)
  • Scale with font-size so the star fits your layout
  • Choose fonts that support the Dingbats block (U+2700–U+27BF)
  • Use \2726 only inside CSS content, not inside HTML text nodes
  • Add aria-hidden="true" when purely decorative, or text for meaningful markers

Don’t

  • Confuse U+2726 with U+2727 (white four pointed star) or other star glyphs (★ ☆)
  • Rely on ✦ alone to communicate meaning in critical UI
  • Assume every font renders Dingbats crisply at small sizes
  • Use ornamental glyphs as the only navigation or state cue
  • Mix CSS escapes into HTML text nodes (use numeric refs in markup)

Key Takeaways

1

Two numeric references render the same glyph

&#x2726; &#10022;
2

CSS content escape

\2726
3

U+2726 is a four-pointed star; pairs with White Four Pointed Star U+2727

4

Dingbats block U+2700–U+27BF; no named HTML entity

5

Pair ornamental glyphs with text or ARIA when meaning must be clear

❓ Frequently Asked Questions

Use &#x2726; (hex), &#10022; (decimal), or \2726 in CSS content. There is no named entity; all valid methods render ✦.
U+2726 (hex 2726, decimal 10022). Dingbats (U+2700–U+27BF). Unicode name BLACK FOUR POINTED STAR.
For decorative design, ratings and reviews, bullet points, section separators, icons, and typographic ornamentation.
Numeric references belong in HTML. The \2726 escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x2726;, &#10022;, or \2726 in CSS depending on whether you are authoring markup or styles.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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