HTML Entity for Eight Spoken Asterisk (✳)

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

What You'll Learn

How to display the Eight Spoken Asterisk (✳) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2733 (EIGHT SPOKEN ASTERISK) in the Dingbats block (U+2700–U+27BF)—a decorative asterisk-style symbol used in footnotes, references, special formatting, bullets, and creative web projects.

Render it with ✳, ✳, or CSS escape \2733. There is no named HTML entity for this symbol. Compare ✷ (eight pointed rectilinear black star, U+2737) or ❊ (eight teardrop spoked propeller asterisk, U+274A) for related Dingbats characters.

⚡ Quick Reference — Eight Spoken Asterisk

Unicode U+2733

Dingbats block

Hex Code ✳

Hexadecimal reference

HTML Code ✳

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2733
Hex code       ✳
HTML code      ✳
Named entity   (none)
CSS code       \2733
Related        U+2737 = Rectilinear star (✷); U+274A = Propeller asterisk (❊)
1

Complete HTML Example

This example demonstrates the Eight Spoken Asterisk (✳) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2733";
  }
 </style>
</head>
<body>
<p>Eight Spoken Asterisk using Hexadecimal: &#x2733;</p>
<p>Eight Spoken Asterisk using HTML Code: &#10035;</p>
<p id="point">Eight Spoken Asterisk using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2733 is supported in modern browsers when rendered with a font that includes Dingbats:

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

👀 Live Preview

See the Eight Spoken Asterisk (✳) in footnotes and formatting contexts:

Large glyph
Footnote ✳ See special note below
Bullet ✳ Decorative list item
Highlight ✳ Featured content
Numeric refs &#x2733; &#10035;

🧠 How It Works

1

Hexadecimal Code

&#x2733; uses the Unicode hexadecimal value 2733 to display the Eight Spoken Asterisk. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2733 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+2733 in the Dingbats block (U+2700–U+27BF). No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Eight Spoken Asterisk (✳) is commonly used in:

✱ Footnotes

Mark footnotes, references, or annotations in articles and docs.

✨ Decorative headers

Bullet points, section dividers, and creative layout accents.

⭐ Highlights

Featured items, ratings, or highlights in product listings.

💻 UI & icons

Asterisk-style icons in navigation, forms, and toolbars.

📝 Text decoration

Headers, captions, and special formatting in web content.

🌐 Web design

Branding, logos, and decorative elements without image assets.

💡 Best Practices

Do

  • Use &#x2733; or &#10035; consistently in markup
  • Use fonts that support Dingbats (system UI, Segoe UI Symbol, Symbola)
  • Add aria-label with clear meaning (e.g. “footnote” or “required field”)
  • Pair ✳ with visible text in footnotes and reference markers
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+2733
  • Confuse ✳ (spoken asterisk) with * (ASCII asterisk U+002A) or ❊ (propeller asterisk U+274A)
  • Put CSS escape \2733 in HTML text nodes
  • Rely on the symbol alone in accessibility-critical interfaces
  • Assume decorative fonts include all Dingbats characters

Key Takeaways

1

Two HTML numeric references render ✳

&#x2733; &#10035;
2

For CSS stylesheets, use the escape in the content property

\2733
3

Unicode U+2733 — EIGHT SPOKEN ASTERISK

4

Dingbats block (U+2700–U+27BF)

5

Three methods, one glyph — no named HTML entity

❓ Frequently Asked Questions

Use &#x2733; (hex), &#10035; (decimal), or \2733 in CSS content. There is no named entity. All produce ✳.
U+2733 (EIGHT SPOKEN ASTERISK). Dingbats block (U+2700–U+27BF). Hex 2733, decimal 10035. A decorative asterisk used in footnotes, references, and special formatting.
In footnotes and references, decorative headers and bullet points, rating or highlight indicators, game or app UI, and any content requiring a distinct asterisk-style symbol in HTML.
HTML references (&#10035; or &#x2733;) go in markup. The CSS escape \2733 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named entities cover common ASCII, Latin-1, and frequently used symbols. Many Dingbats characters including U+2733 have no named entity—use &#x2733; or &#10035; in HTML.

Explore More HTML Entities!

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