HTML Entity for Shadowed White Star (✰)

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

What You'll Learn

How to display the Shadowed White Star (✰) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2730 (SHADOWED WHITE STAR) in the Dingbats block (U+2700–U+27BF)—a decorative white star with a shadow effect, used in ratings, highlights, awards, and star-themed design.

Render it with ✰, ✰, or CSS \2730. There is no named HTML entity. Do not confuse ✰ with Pinwheel Star U+272F (✯) or black star U+2605 (★).

⚡ Quick Reference — Shadowed White Star

Unicode U+2730

Dingbats (U+2700–U+27BF)

Hex Code ✰

Hexadecimal reference

HTML Code ✰

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2730
Hex code       ✰
HTML code      ✰
Named entity   (none)
CSS code       \2730
Official name  Shadowed white star
Related        U+272F = pinwheel 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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2730";
  }
 </style>
</head>
<body>
<p>Shadowed white star (hex): &#x2730;</p>
<p>Shadowed white star (decimal): &#10032;</p>
<p id="point">Shadowed white star (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Shadowed White Star (✰) is supported in modern browsers when fonts include Dingbats glyphs:

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

👀 Live Preview

See the Shadowed White Star in rating and decorative contexts:

Single symbol
Rating row ✰✰✰✰☆   4 of 5
Highlight badge ✰ Featured
Not the same as Pinwheel ✯  |  Black star ★
Numeric refs &#x2730; &#10032; \2730

🧠 How It Works

1

Hexadecimal Code

&#x2730; uses Unicode hexadecimal 2730 to display the shadowed white star.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2730 is used in CSS stylesheets in the content property of pseudo-elements for star markers.

CSS stylesheet
=

Decorative result

All three methods produce . Unicode U+2730 in Dingbats. No named entity. Next: Shamrock.

Use Cases

The Shadowed White Star (✰) commonly appears in:

⭐ Ratings

Review scores, product ratings, and feedback displays.

🎨 Decorative UI

Highlights, badges, and ornamental accents in layouts.

🌟 Awards

Achievement showcases, featured items, and recognition content.

🌌 Star themes

Celestial, space, and night-sky design motifs.

🛠 CSS markers

Custom list bullets via ::before content.

📖 Symbol guides

Dingbats and HTML entity reference documentation.

💡 Best Practices

Do

  • Use &#x2730; or &#10032; in HTML markup
  • Pair rating stars with visible text (e.g. “4 out of 5”)
  • Use CSS content: "\2730" for reusable star components
  • Test rendering across browsers and fonts
  • Distinguish ✰ from pinwheel star ✯

Don’t

  • Use padded Unicode notation like U+02730—the correct value is U+2730
  • Confuse ✰ with ✯ (pinwheel star) or ★ (black star)
  • Expect a named HTML entity for U+2730
  • Put CSS escape \2730 in HTML text nodes
  • Rely on stars alone for accessibility without text labels

Key Takeaways

1

Three ways to render U+2730 in HTML and CSS

&#x2730; &#10032;
2

For CSS stylesheets, use \2730 in the content property

3

Unicode U+2730 — SHADOWED WHITE STAR

4

No named entity—Dingbats decorative star

❓ Frequently Asked Questions

Use &#x2730; (hex), &#10032; (decimal), or \2730 in CSS content. There is no named HTML entity. All three render ✰.
U+2730 (SHADOWED WHITE STAR). Dingbats (U+2700–U+27BF). Hex 2730, decimal 10032.
No. ✰ (U+2730) is the shadowed white star. ✯ (U+272F) is the pinwheel star. They are different Dingbats characters with different glyphs.
For decorative content, rating displays, highlight badges, awards, star-themed UI, and any design needing a white star with a shadow effect.
Dingbats characters like U+2730 use numeric hex or decimal codes in HTML. Named entities cover common characters only; decorative symbols typically use numeric references.

Explore More HTML Entities!

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