HTML Entity for Eight Spoken Asterisk (✳)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2733

What Is Eight Spoken Asterisk?

Eight spoken asterisk (✳) is the Unicode character at U+2733 in Dingbats. Official Unicode name: EIGHT SPOKED ASTERISK. It is an eight-spoke decorative asterisk — useful for footnotes, highlights, and ornamental UI accents.

Remember
Character     ✳
Unicode       U+2733
Hex entity    ✳
Decimal       ✳
CSS escape    \2733
Named entity  (none)
Not the same  * (ASCII) · ✱ (heavy) · ✴ (8-point star)

Prefer ✳ or ✳ in HTML (no named form). You can also type ✳ in a UTF-8 document.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNone—
Hex entity✳HTML markup (preferred)
Decimal entity✳HTML markup
Direct character✳HTML text (UTF-8)
CSS escape\2733Stylesheet content
ASCII asterisk (related)* (U+002A)Code / plain emphasis — not Dingbats

When to Use Which

SituationUse
Eight spoken (eight-spoked) asterisk✳ or type ✳
ASCII / heavy asterisk* · U+2731
Teardrop-spoked propeller asteriskNext entity in the series
Eight-pointed rectilinear starU+2737 (✷) — star, not asterisk
Generated text via ::before / ::aftercontent: "\2733"

Live Preview

Eight spoken asterisk rendered alone, as a footnote mark, and compared with related ornaments.

Glyph ✳
Large glyph ✳
Footnote Note✳ See details below.
Compared ✳   *   ✱   ✴   ✷
With entities Hex: ✳ | Decimal: ✳

Complete HTML Example

One page that shows Eight Spoken Asterisk with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to display ✳ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Eight Spoken Asterisk (U+2733) in HTML</title>
  <style>
    #point::after {
      content: "\2733";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x2733;</p>
  <p>Built with Decimal: &#10035;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ✳</p>
  <p>Footnote: Note✳ See details below.</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: &#x2733; inserts code point U+2733 → ✳.

2. Decimal: same code point as 10035 → &#10035;. Same visual as hex.

3. CSS: use \2733 in content (not an HTML entity). #point::after appends ✳.

4. Typed: paste ✳ in a UTF-8 document, or mark a note like Note✳ See details below.

Pitfalls & Tips

Common mistakes when working with Eight Spoken Asterisk.

Name

No named entity

There is no HTML5 named entity for U+2733. Use &#x2733; or &#10035;.

*

Not the ASCII asterisk

U+002A (*) is the plain keyboard asterisk. U+2733 is the Dingbats eight-spoke form.

✱

Not a heavy asterisk

U+2731 is a heavier Dingbat asterisk. This character is the eight-spoke style.

Spoken / Spoked

Tutorial name vs Unicode name

This page title uses the site slug “spoken.” The official Unicode name is EIGHT SPOKED ASTERISK — same code point U+2733.

CSS vs HTML

Do not mix escapes

\2733 belongs in CSS strings. &#x2733; / &#10035; belong in HTML.

Fonts

Dingbats font coverage

Some fonts omit Dingbats asterisks. Prefer a font with solid Dingbats coverage.

a11y

Add accessible text

A lone ornamental glyph can be unclear to screen readers. Pair footnote marks with clear visible text, or mark decorative uses with aria-hidden="true".

Semicolon

End references

Always finish numeric entities with ; — write &#x2733;, not &#x2733.

Browser Support

Eight spoken asterisk (U+2733) and its entity forms (&#x2733;, &#10035;, CSS \\2733) are supported in all mainstream browsers. Visible glyphs depend on Dingbats font coverage.

✓ Universal support

Eight Spoken Asterisk (&#x2733;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2733 / entities Full support

Bottom line: Prefer &#x2733; in HTML (no named form). Use &#10035; when decimal form is required, and \\2733 only inside CSS content.

Key Takeaways

  • Unicode: eight spoken asterisk is U+2733 (decimal 10035) — glyph ✳.
  • HTML: no named entity — use &#x2733; / &#10035; / type ✳.
  • CSS: use \2733 inside content for generated text.
  • Shape: Dingbat asterisk ≠ ASCII * ≠ heavy ✱ ≠ star ✴.

One line: U+2733 → &#x2733; / &#10035; / CSS \2733.

Frequently Asked Questions

Use &#x2733; (hex), &#10035; (decimal), type ✳ directly in UTF-8, or the CSS escape \2733 in content. There is no named HTML entity for U+2733.
U+2733 (EIGHT SPOKED ASTERISK). Hex 2733, decimal 10035. It belongs to the Dingbats block (U+2700–U+27BF).
No. Use numeric forms &#10035; or &#x2733;. Related marks such as U+2731 (heavy asterisk) also have no named HTML entity for the Dingbats form.
Use it for decorative footnotes, highlights, and asterisk-style UI accents when you want an eight-spoke Dingbat rather than the plain ASCII *. Prefer * for code and plain text emphasis.
HTML entities (&#10035; or &#x2733;) go in markup. The CSS escape \2733 goes in stylesheet strings (usually content on ::before/::after).
No. U+2733 is ✳ (eight spoken / eight-spoked asterisk). * is U+002A (ASCII asterisk). U+2731 is ✱ (heavy asterisk).

Did you know?

Eight spoken asterisk is Unicode U+2733 (decimal 10035) — glyph ✳ (official Unicode name: EIGHT SPOKED ASTERISK) in Dingbats. There is no HTML5 named entity; use &#x2733; or &#10035;. Nearby marks include U+2734 (✴, eight-pointed star), U+2731 (✱, heavy asterisk), and the ASCII asterisk U+002A (*).

Next: Eight Teardrop Spoked Propeller Asterisk

Learn the HTML entity for eight teardrop spoked propeller asterisk.

Eight Teardrop Spoked Propeller Asterisk tutorial →

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