HTML Entity for Open Centre Asterisk (✲)

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

What You'll Learn

How to display the Open Centre Asterisk (✲) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2732 (OPEN CENTRE ASTERISK) in the Dingbats block (U+2700–U+27BF)—a decorative asterisk with an open centre, useful for custom bullet points, design accents, footnote markers, and symbolic typography.

Render it with ✲, ✲, or CSS escape \2732. There is no named HTML entity. Do not confuse ✲ with the ASCII asterisk U+002A (*), U+2733 (✳, eight spoked asterisk), or U+272B (✫, open centre black star).

⚡ Quick Reference — Open Centre Asterisk

Unicode U+2732

Dingbats block

Hex Code ✲

Hexadecimal reference

HTML Code ✲

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2732
Hex code       ✲
HTML code      ✲
Named entity   (none)
CSS code       \2732
Meaning        Open centre asterisk (Dingbats)
Related        U+002A = ASCII asterisk (*)
               U+2733 = eight spoked asterisk (✳)
               U+272B = open centre black star (✫)
               U+2042 = asterism (⁂)
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: "\2732";
  }
 </style>
</head>
<body>
<p>Open centre asterisk (hex): &#x2732;</p>
<p>Open centre asterisk (decimal): &#10034;</p>
<p id="point">Open centre asterisk (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Open Centre Asterisk (✲) is widely supported in all modern browsers:

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

👀 Live Preview

See the Open Centre Asterisk (✲) in decorative and design contexts:

Single symbol
List marker ✲ Featured item  |  ✲ New release
Footnote style See note✲ for details
Not the same as ASCII *  |  Eight spoked ✳  |  Black star ✫
Numeric refs &#x2732; &#10034; \2732

🧠 How It Works

1

Hexadecimal Code

&#x2732; uses the Unicode hexadecimal value 2732 to display the open centre asterisk.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2732 is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after for custom bullets.

CSS stylesheet
=

Decorative asterisk result

All three methods render . Unicode U+2732 in the Dingbats block. Next: Open Centre Black Star (✫).

Use Cases

The Open Centre Asterisk (✲) is commonly used in:

📄 Custom bullets

Distinct list markers and bullet points beyond default disc or circle styles.

🎨 Design accents

Decorative symbols in headers, badges, cards, and typography layouts.

📝 Footnotes & refs

Reference markers and inline notes where a styled asterisk is preferred over *.

⭐ Featured content

Highlighting special items, new features, or premium sections in UI copy.

💻 Web components

Icon-like symbols in navigation, tags, and status indicators without image assets.

📋 Unicode references

Character pickers, entity documentation, and Dingbats symbol guides.

♿ Accessibility

Pair decorative ✲ with visible text; do not rely on the symbol alone for meaning.

💡 Best Practices

Do

  • Use &#x2732; or &#10034; for inline decorative asterisks
  • Use CSS \2732 in ::before for custom list bullets
  • Set <meta charset="utf-8"> for reliable rendering
  • Pick one numeric style per project for consistency
  • Provide text context alongside decorative symbols

Don’t

  • Confuse ✲ with ASCII * (U+002A) or eight spoked ✳ (U+2733)
  • Use padded Unicode notation like U+02732—the correct value is U+2732
  • Use CSS escape \2732 in HTML text nodes
  • Use ✲ as a required footnote marker without accessible text
  • Assume every font renders Dingbats identically—test your typeface

Key Takeaways

1

Two HTML numeric references plus CSS for U+2732

&#x2732; &#10034;
2

For CSS stylesheets, use \2732 in the content property

3

Unicode U+2732 — OPEN CENTRE ASTERISK in Dingbats

4

Distinct from ASCII *, ✳, and ✫

❓ Frequently Asked Questions

Use &#x2732; (hex), &#10034; (decimal), or \2732 in CSS content. There is no named entity. All three render ✲.
U+2732 (OPEN CENTRE ASTERISK). Dingbats block (U+2700–U+27BF). Hex 2732, decimal 10034.
No. ✲ (U+2732) is a decorative Dingbats symbol with an open centre. * (U+002A) is the basic ASCII asterisk used for wildcards, multiplication notation, and plain-text footnotes.
For decorative bullet points, list markers, footnote-style references, badges, typography accents, and any UI needing a distinct star-like symbol beyond the plain ASCII asterisk.
Named HTML entities cover a subset of common characters. U+2732 uses numeric hex or decimal codes or CSS escapes, which is standard for Dingbats decorative symbols.

Explore More HTML Entities!

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