HTML Entity for Circled White Star (✪)

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

What You'll Learn

How to display the Circled White Star (✪) in HTML using numeric references and CSS escapes. This character is U+272A (CIRCLED WHITE STAR) in the Dingbats block (U+2700–U+27BF)—a white star inside a circle used for decorative design and typography.

There is no named HTML entity for U+272A. Use ✪, ✪, or \272A in CSS content. Do not confuse ✪ with Stress Outlined White Star U+2729 (✩), Black Centre White Star U+272C (✬), or plain White Star U+2606 (☆).

⚡ Quick Reference — Circled White Star

Unicode U+272A

Dingbats block

Hex Code ✪

Hexadecimal reference

HTML Code ✪

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+272A
Hex code       ✪
HTML code      ✪
Named entity   —
CSS code       \272A
1

Complete HTML Example

This example shows U+272A using hexadecimal and decimal references plus a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\272A";
  }
 </style>
</head>
<body>
<p>Circled White Star using Hexa Decimal: &#x272A;</p>
<p>Circled White Star using HTML Code: &#10026;</p>
<p id="point">Circled White Star using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Circled White Star is supported in all modern browsers:

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

👀 Live Preview

See the Circled White Star in decorative contexts:

Featured list ✪ Premium plan   ✪ Priority support
Section divider
Large glyph
vs related stars Circled white: ✪ (U+272A)   Outlined: ✩ (U+2729)   Black centre: ✬ (U+272C)
Monospace refs &#x272A; &#10026; \272A

🧠 How It Works

1

Hexadecimal Code

&#x272A; uses the Unicode hexadecimal value 272A to display the Circled White Star.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\272A is used in CSS stylesheets—for example in content on ::marker, ::before, or ::after.

CSS stylesheet
=

Same visual result

All three methods produce the Circled White Star glyph: . Unicode U+272A sits in the Dingbats block (U+2700–U+27BF). No named HTML entity exists.

Use Cases

The Circled White Star (✪) commonly appears in:

✨ Decorative design

Bullet points, section dividers, and ornamental web elements.

🎨 Creative typography

Headers, callouts, and typographic ornaments in creative projects.

📋 Lists & bullets

Custom list markers via CSS ::marker or inline HTML.

🌟 Ratings & highlights

Star-style indicators, featured items, or decorative emphasis markers.

📄 Documents

Invitations, formatted content, and print-style web layouts.

🔤 Symbol references

Unicode tables and dingbat character galleries.

♿ Accessibility

Use aria-hidden="true" when purely decorative; pair with text when meaningful.

💡 Best Practices

Do

  • Use &#x272A; or &#10026; consistently in HTML
  • Set aria-hidden="true" on purely decorative star glyphs
  • Use CSS \272A in ::marker for custom list bullets
  • Choose fonts that support Dingbats (U+2700–U+27BF)
  • Provide visible text alongside the symbol when it conveys meaning

Don’t

  • Confuse U+272A (✪) with U+272C (✬) or U+2729 (✩)
  • Put CSS escape \272A inside HTML text nodes
  • Assume a named entity exists—U+272A has none
  • Rely on the glyph alone for ratings without accessible labels
  • Mix hex and decimal styles randomly in one file

Key Takeaways

1

No named entity—use numeric references

&#x272A; &#10026;
2

For CSS stylesheets, use the escape in the content property

\272A
3

U+272A CIRCLED WHITE STAR in Dingbats

4

Decorative white star inside a circle

5

Three methods, one glyph — all widely supported

❓ Frequently Asked Questions

Use &#x272A; (hex), &#10026; (decimal), or \272A in CSS content. There is no named HTML entity for U+272A.
U+272A (CIRCLED WHITE STAR). Dingbats block (U+2700–U+27BF). Hex 272A, decimal 10026.
For decorative design, custom bullets, icons, ratings, creative typography, document styling, and visual emphasis in web content.
Numeric references (&#10026; or &#x272A;) go directly in HTML markup. The CSS escape \272A is used in stylesheets, typically in the content property of pseudo-elements.
No. U+272A has no named HTML entity. Black Centre White Star is a different character: U+272C (✬).

Explore More HTML Entities!

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