HTML Entity for Sixteen Pointed Asterisk (✺)

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

What You'll Learn

How to display the Sixteen Pointed Asterisk (✺) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+273A (SIXTEEN POINTED ASTERISK) in the Dingbats block (U+2700–U+27BF)—a decorative multi-pointed asterisk used in typography, bullet lists, and creative web design.

Render it with ✺, ✺, or CSS \273A. There is no named HTML entity. Do not confuse ✺ with the six pointed black star U+2736 (✶, ✶) or the mathematical asterisk operator U+2217 (∗, ∗).

⚡ Quick Reference — Sixteen Pointed Asterisk

Unicode U+273A

Dingbats

Hex Code ✺

Hexadecimal reference

HTML Code ✺

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+273A
Hex code       ✺
HTML code      ✺
Named entity   (none)
CSS code       \273A
Official name  Sixteen pointed asterisk
Not the same   U+2736 = ✶ (✶ six pointed black star)
               U+2217 = ∗ (∗ asterisk operator)
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: "\273A";
  }
 </style>
</head>
<body>
<p>Asterisk (hex): &#x273A;</p>
<p>Asterisk (decimal): &#10042;</p>
<p id="point">Asterisk (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Sixteen Pointed Asterisk (✺) is supported in modern browsers when fonts include Dingbats glyphs:

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

👀 Live Preview

See the sixteen pointed asterisk in decorative contexts:

Single symbol
Decorative row ✺ ✺ ✺ ✺
List marker ✺ Decorative bullet item
Section accent ✺ Special Notes ✺
Numeric refs &#x273A; &#10042; \273A

🧠 How It Works

1

Hexadecimal Code

&#x273A; uses Unicode hexadecimal 273A to display the sixteen pointed asterisk.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\273A is used in CSS stylesheets in the content property of pseudo-elements for decorative markers.

CSS stylesheet
=

Decorative asterisk result

All three methods produce . Unicode U+273A in Dingbats. No named entity. Next: Skull and Crossbones.

Use Cases

The Sixteen Pointed Asterisk (✺) commonly appears in:

🎨 Decorative design

Ornamental accents, artistic layouts, and creative web projects.

📝 List bullets

Custom bullet points in lists, menus, and navigation.

📄 Typography

Section dividers, emphasis markers, and decorative text elements.

⭐ Featured content

Highlighting special notes, callouts, and premium sections.

🛠 CSS markers

Custom list bullets via ::before content.

📖 Symbol guides

Dingbats and HTML entity reference documentation.

💡 Best Practices

Do

  • Use &#x273A; or &#10042; in HTML markup
  • Add descriptive text or aria-label when used as a UI marker
  • Use CSS content: "\273A" for reusable bullet components
  • Scale with font-size to match your design
  • Test rendering across browsers and fonts

Don’t

  • Use U+0273A or CSS \0273A—the correct value is U+273A and \273A
  • Confuse ✺ with six pointed star ✶ (&sext;)
  • Expect a named HTML entity for U+273A
  • Put CSS escape \273A in HTML text nodes
  • Use purely decorative symbols without accessibility context

Key Takeaways

1

Three ways to render U+273A in HTML and CSS

&#x273A; &#10042;
2

For CSS stylesheets, use \273A in the content property

3

Unicode U+273A — SIXTEEN POINTED ASTERISK

4

No named entity—not the same as math asterisk ∗

❓ Frequently Asked Questions

Use &#x273A; (hex), &#10042; (decimal), or \273A in CSS content. There is no named HTML entity. All three render ✺.
U+273A (SIXTEEN POINTED ASTERISK). Dingbats (U+2700–U+27BF). Hex 273A, decimal 10042.
No. Use numeric references &#x273A; or &#10042; in HTML, or CSS escape \273A in stylesheets.
For decorative designs, custom list bullets, typography accents, creative web design, emphasis markers, featured callouts, and ornamental UI elements.
HTML code (&#10042; or &#x273A;) is used directly in HTML content. CSS entity \273A is used in stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

Explore More HTML Entities!

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