HTML Entity for Stress Outlined White Star (✩)

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

What You'll Learn

How to display Stress Outlined White Star (✩) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2729 (STRESS OUTLINED WHITE STAR) in the Dingbats block (U+2700–U+27BF)—a stylized outlined star used in decorative typography and creative design.

Render it with ✩, ✩, or CSS \2729. There is no named HTML entity. Do not confuse ✩ with White Star ☆ (U+2606, ☆) or Black Star ★ (U+2605, ★).

⚡ Quick Reference — Stress Outlined White Star

Unicode U+2729

Dingbats

Hex Code ✩

Hexadecimal reference

HTML Code ✩

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2729
Hex code       ✩
HTML code      ✩
Named entity   (none)
CSS code       \2729
Meaning        Stress outlined white star
Not the same   U+2606 = White Star (☆, ☆)
               U+2605 = Black Star (★, ★)
Block          Dingbats (U+2700–U+27BF)
1

Complete HTML Example

A simple example showing ✩ using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2729";
  }
 </style>
</head>
<body>
<p>Accent (hex): &#x2729; Featured</p>
<p>Accent (decimal): &#10025; Highlight</p>
<p id="point">Accent (CSS): Design </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

Stress Outlined White Star (✩) renders in modern browsers when fonts include Dingbats glyphs:

Chrome1+
Firefox1+
Safari3.1+
Edge12+
Opera4+
Android4.4+
iOS Safari3.2+

👀 Live Preview

See the stress outlined white star in decorative contexts:

Single symbol
Decorative heading ✩ Featured Content
UI accent New ✩ Premium
Not the same as ✩ (Stress Outlined)  |  ☆ (White Star)  |  ★ (Black Star)
Numeric refs &#x2729; &#10025; \2729

🧠 How It Works

1

Hexadecimal Code

&#x2729; references code point U+2729 using hex digits 2729.

HTML markup
2

Decimal HTML Code

&#10025; is the decimal equivalent (10025) for the same character.

HTML markup
3

CSS Entity

\2729 is the CSS escape for U+2729, used in the content property of pseudo-elements.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+2729 in Dingbats (U+2700–U+27BF). No named entity.

Use Cases

Stress Outlined White Star (✩) commonly appears in:

🎨 Decorative design

Logos, banners, and creative layouts with star accents.

💻 UI elements

Badges, labels, and icons in web and mobile applications.

🌟 Creative projects

Artistic content, portfolios, and design showcases.

📚 Typography

Editorial headings and decorative typographic embellishments.

🌃 Landing pages

Hero sections and promotional content with star highlights.

💎 Branding

Marketing materials and brand identity with decorative stars.

💡 Best Practices

Do

  • Use &#x2729; or &#10025; in HTML markup
  • Provide accessible text alongside decorative symbols
  • Use Dingbats-friendly fonts for consistent rendering
  • Pick hex or decimal style and stay consistent per project
  • Test rendering across browsers and devices

Don’t

  • Use padded Unicode notation like U+02729—the correct value is U+2729
  • Use CSS \02729 with a leading zero—prefer \2729
  • Confuse ✩ with White Star ☆ or Black Star ★
  • Use the symbol excessively—keep decorative use balanced
  • Put CSS escape \2729 in HTML text nodes

Key Takeaways

1

Three ways to render U+2729 in HTML and CSS

&#x2729; &#10025;
2

For CSS stylesheets, use \2729 in the content property

3

U+2729 — STRESS OUTLINED WHITE STAR (✩)

4

Distinct from White Star ☆ and Black Star ★

❓ Frequently Asked Questions

Use &#x2729; (hex), &#10025; (decimal), or \2729 in CSS content. There is no named HTML entity. All three render ✩.
U+2729 (STRESS OUTLINED WHITE STAR). Dingbats (U+2700–U+27BF). Hex 2729, decimal 10025.
No. ✩ (U+2729) is STRESS OUTLINED WHITE STAR in Dingbats. ☆ (U+2606) is WHITE STAR in Miscellaneous Symbols with entity &star;. They are separate characters with different glyphs.
For decorative content, UI design accents, creative projects, typographic embellishments, branding, landing pages, and visual design where a stylized outlined star adds aesthetic appeal.
Named HTML entities cover ASCII, Latin-1, and some common symbols. Dingbats characters like U+2729 use numeric hex or decimal references—standard practice for specialized Unicode blocks.

Explore More HTML Entities!

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