HTML Entity for Four Balloon Spoked Asterisk (✣)

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

What Is Four Balloon Spoked Asterisk?

Four balloon spoked asterisk (✣) is the Unicode character at U+2723 in Dingbats. Official name: FOUR BALLOON-SPOKED ASTERISK. It is a decorative ornament — not the Basic Latin asterisk *.

Remember
Character     ✣
Unicode       U+2723
Hex entity    ✣
Decimal       ✣
CSS escape    \2723
Named entity  (none)
Not the same  * (U+002A) · ✢ (teardrop) · ✤ (club)

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\2723Stylesheet content

When to Use Which

SituationUse
Decorative bullet or ornament✣ or type ✣
Footnotes, math, or code asteriskType * (U+002A) — not U+2723
Other Dingbats asterisksTeardrop (✢) · Club (✤)
Heavy / bold-looking asteriskHeavy asterisk when available
Generated text via ::before / ::aftercontent: "\2723"

Live Preview

Ornament alone, as a bullet, and next to related asterisks.

Glyph ✣
Large glyph ✣
Sample ✣ Featured item
Compared ✣   ✢   ✤   *
With entities Hex: ✣ | Decimal: ✣

Complete HTML Example

One page that shows four balloon spoked 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>Four Balloon Spoked Asterisk (U+2723) in HTML</title>
  <style>
    #point::after {
      content: "\2723";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x2723;</p>
  <p>Built with Decimal: &#10019;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ✣</p>
  <p><span aria-label="decorative asterisk">&#x2723;</span> Featured item</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: &#x2723; inserts code point U+2723 → ✣.

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

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

4. Typed: paste ✣ in a UTF-8 document when you need this ornament as one character.

Pitfalls & Tips

Common mistakes when working with four balloon spoked asterisk.

Name

No named entity

There is no HTML5 named entity for U+2723. Use &#x2723; or &#10019;. Do not invent &balloonasterisk;.

*

Not ASCII asterisk

Type * for footnotes, wildcards, and multiplication. Reserve ✣ for decorative use.

Siblings

Pick the right Dingbat

✢ (teardrop), ✣ (balloon), and ✤ (club) look similar but are different code points. Match the glyph you need.

Font

Font coverage

Dingbats may be missing in some fonts. Prefer a font with Dingbats coverage for reliable rendering.

CSS vs HTML

Do not mix escapes

\2723 belongs in CSS strings. &#x2723; / &#10019; belong in HTML.

a11y

Add accessible text

Screen readers may not announce ✣ clearly. Prefer aria-label or nearby prose when the ornament carries meaning.

Semicolon

End references

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

Browser Support

Four balloon spoked asterisk (U+2723) and its entity forms (&#x2723;, &#10019;, CSS \\2723) are supported in all mainstream browsers. Visible glyphs depend on Dingbats font coverage.

✓ Universal support

Four Balloon Spoked Asterisk (&#x2723;)

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+2723 Full support

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

Key Takeaways

  • Unicode: four balloon spoked asterisk is U+2723 (decimal 10019) — glyph ✣.
  • HTML: no named entity — use &#x2723; / &#10019; / type ✣.
  • CSS: use \2723 inside content for generated text.
  • Meaning: ✣ ≠ * ≠ ✢ ≠ ✤.

One line: U+2723 → &#x2723; / &#10019; / CSS \2723 (no named form).

Frequently Asked Questions

Use &#x2723; (hex), &#10019; (decimal), type ✣ directly in UTF-8, or the CSS escape \2723 in content. There is no named HTML entity for U+2723.
U+2723 (FOUR BALLOON-SPOKED ASTERISK). Hex 2723, decimal 10019. It belongs to the Dingbats block (U+2700–U+27BF).
No. HTML5 does not define a named entity for U+2723. Prefer &#x2723; or &#10019;.
Use it for decorative bullets, ornaments, or design accents when you want this Dingbats glyph. Prefer the Basic Latin asterisk (*) for footnotes, multiplication, or code.
HTML numeric entities (&#10019; or &#x2723;) go in markup. The CSS escape \2723 goes in stylesheet strings (usually content on ::before/::after).
No. U+2723 is one Dingbats ornament (✣). The ASCII asterisk is U+002A (*). Nearby variants include four teardrop (U+2722) and four club (U+2724).

Did you know?

Four balloon spoked asterisk is Unicode U+2723 (decimal 10019) — glyph ✣ (FOUR BALLOON-SPOKED ASTERISK) in Dingbats. There is no HTML5 named entity; use &#x2723; or &#10019;. It is a decorative asterisk variant, not the Basic Latin asterisk * (U+002A). Nearby Dingbats siblings include four club spoked asterisk (✤) and four teardrop spoked asterisk (✢).

Next: Four Club Spoked Asterisk

Learn the HTML entity for four club spoked asterisk (U+2724).

Four club spoked 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