HTML Entity for Heavy Asterisk (✱)

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

What You'll Learn

How to display the Heavy Asterisk symbol (✱) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2731 (HEAVY ASTERISK) in the Dingbats block (U+2700–U+27BF). It is a bold, filled asterisk that stands out more than the standard asterisk and works well for bullets, ratings, footnotes, and decorative typography.

Render it with ✱, ✱, or CSS escape \2731. There is no named HTML entity. Do not confuse ✱ with U+002A (*, standard asterisk) or star glyphs like U+2605 (★, black star).

⚡ Quick Reference — Heavy Asterisk

Unicode U+2731

Dingbats block

Hex Code ✱

Hexadecimal reference

HTML Code ✱

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2731
Hex code       ✱
HTML code      ✱
Named entity   (none)
CSS code       \2731
Meaning        Heavy asterisk (bold)
Related        U+002A = asterisk (*)
1

Complete HTML Example

This example demonstrates the Heavy Asterisk symbol (✱) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2731";
  }
 </style>
</head>
<body>
<p>Heavy Asterisk using Hexadecimal: &#x2731;</p>
<p>Heavy Asterisk using HTML Code: &#10033;</p>
<p id="point">Heavy Asterisk using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Heavy Asterisk symbol (✱) is widely supported in modern browsers when the font includes Dingbats:

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

👀 Live Preview

Heavy Asterisk (✱) in context, compared with the standard asterisk (*):

List bullet ✱ First item in a styled list
Required field Email ✱
Large glyph
U+2731 vs * ✱   *
Numeric refs &#x2731; &#10033; \2731

🧠 How It Works

1

Hexadecimal Code

&#x2731; uses the Unicode hexadecimal value 2731 to display the Heavy Asterisk. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2731 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after for list markers or labels.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+2731 is in the Dingbats block. Next: Heavy Ballot X (✘).

Use Cases

The Heavy Asterisk symbol (✱) is commonly used in:

📋 Bullet points & lists

Stylish list markers that stand out more than standard dots or asterisks.

⭐ Ratings & highlights

Featured items, picks, or emphasis in product and review content.

📄 Footnotes

Reference markers in articles, papers, and documentation.

✨ Decorative headings

Section dividers, title embellishments, and callout typography.

📝 Required fields

Form labels when a bolder required marker is desired (e.g. Name ✱).

🎨 Design systems

Style guides and custom typography where a heavy asterisk fits the visual style.

💡 Best Practices

Do

  • Pair ✱ with text or aria-label for required fields and footnotes
  • Use ::before with content: "\2731" for list markers
  • Declare UTF-8 with <meta charset="utf-8">
  • Verify fonts support U+2731 for consistent rendering
  • Use one numeric style (hex or decimal) per project
  • Test rendering across browsers and devices

Don’t

  • Confuse U+2731 (✱) with U+002A (*, standard asterisk)
  • Rely on ✱ alone for accessibility-critical meaning
  • Expect a named HTML entity for U+2731
  • Use CSS \2731 in HTML text nodes
  • Assume every font renders the Dingbat glyph identically

Key Takeaways

1

Two HTML numeric references plus CSS insert U+2731

&#x2731; &#10033;
2

For CSS, use \2731 in the content property

3

Unicode U+2731 — HEAVY ASTERISK (✱)

4

Not the same as standard asterisk U+002A (*)

❓ Frequently Asked Questions

Use &#x2731; (hex), &#10033; (decimal), or \2731 in CSS content. There is no named entity. All three methods render the Heavy Asterisk (✱) correctly.
U+2731 (HEAVY ASTERISK). Dingbats block. Hex 2731, decimal 10033. The symbol (✱) is a bold, filled asterisk often used for emphasis, bullet points, or ratings.
For bullet points and lists, star or rating indicators, footnotes and references, decorative headings, form required-field markers, and typographic emphasis in titles or callouts.
HTML references (&#10033; or &#x2731;) go in markup. The CSS escape \2731 is used in stylesheets, typically on ::before or ::after. Both produce ✱.
Named entities cover common ASCII, Latin-1, and widely used symbols. U+2731 is in the Dingbats block and uses numeric hex (&#x2731;) or decimal (&#10033;) codes, which is standard for such characters.

Explore More HTML Entities!

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