HTML Entity for Heavy Four Balloon Spoked Asterisk (✤)

What You'll Learn
How to display the Heavy Four Balloon Spoked Asterisk (✤) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2724 (HEAVY FOUR BALLOON SPOKED ASTERISK) in the Dingbats block (U+2700–U+27BF). It is a decorative asterisk with four balloon-shaped spokes—ideal for custom bullets, list markers, typographic dividers, and designs that need a distinctive four-point asterisk beyond the standard * (U+002A).
Render it with ✤, ✤, or CSS escape \2724. There is no named HTML entity. Do not confuse ✤ with U+2731 (✱, heavy asterisk) or U+274B (❋, eight teardrop spoked propeller asterisk); each Dingbats asterisk has a distinct glyph.
⚡ Quick Reference — Balloon Spoked Asterisk
U+2724Dingbats block
✤Hexadecimal reference
✤Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2724
Hex code ✤
HTML code ✤
Named entity (none)
CSS code \2724
Meaning Four balloon spoked asterisk
Related U+002A = asterisk (*)
U+2731 = heavy asterisk (✱)
U+274B = propeller asterisk (❋)Complete HTML Example
This example demonstrates the Heavy Four Balloon Spoked Asterisk (✤) using hexadecimal code, decimal HTML code, and a CSS content escape for custom list bullets:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2724";
}
</style>
</head>
<body>
<p>Balloon Asterisk using Hexadecimal: ✤</p>
<p>Balloon Asterisk using HTML Code: ✤</p>
<p id="point">Balloon Asterisk using CSS Entity</p>
</body>
</html>🌐 Browser Support
The Heavy Four Balloon Spoked Asterisk (✤) is widely supported in modern browsers when the font includes Dingbats asterisk glyphs:
👀 Live Preview
Heavy Four Balloon Spoked Asterisk (✤) in context, compared with other asterisk symbols:
🧠 How It Works
Hexadecimal Code
✤ uses the Unicode hexadecimal value 2724 to display the balloon asterisk. The x prefix indicates hexadecimal format.
Decimal HTML Code
✤ uses the decimal Unicode value 10020 to display the same character.
CSS Entity
\2724 is used in CSS stylesheets, particularly in content on ::before or ::after for custom list bullets and accent markers.
Same visual result
All three methods produce ✤. Unicode U+2724 is in the Dingbats block. Next: Heavy Greek Cross (✚).
Use Cases
The Heavy Four Balloon Spoked Asterisk (✤) is commonly used in:
Custom list bullets or step markers with a distinct balloon-asterisk style.
Section dividers, emphasis markers, or accent characters in articles and docs.
Unique asterisk motif in logos, icons, or brand assets.
Mark key features or highlights in product or service listings.
content: "\2724" on ::before without extra HTML markup.
Optional decorative marker for footnotes (pair with semantic structure).
💡 Best Practices
Do
- Use
<ul>/<ol>and<li>when ✤ acts as a list bullet - Apply
content: "\2724 "viali::beforefor custom bullets - Declare UTF-8 with
<meta charset="utf-8"> - Keep one numeric style (hex or decimal) per project
- Test glyph rendering in your font stack
- Mark purely decorative uses with
aria-hidden="true"when appropriate
Don’t
- Replace semantic list markup with glyph-only paragraphs
- Confuse U+2724 (✤) with U+2731 (✱) or U+274B (❋)
- Expect a named HTML entity for U+2724
- Use CSS
\2724in HTML text nodes - Use decorative bullets where required-field asterisks need
aria-required
Key Takeaways
Two HTML numeric references plus CSS insert U+2724
✤ ✤For CSS, use \2724 in the content property
Unicode U+2724 — four balloon spoked asterisk (✤)
Distinct from ASCII * (U+002A) and heavy asterisk U+2731 (✱)
Next: Heavy Greek Cross (✚)
❓ Frequently Asked Questions
✤ (hex), ✤ (decimal), or \2724 in CSS content. There is no named entity. All three methods render the symbol (✤) correctly.U+2724 (HEAVY FOUR BALLOON SPOKED ASTERISK). Dingbats block. Hex 2724, decimal 10020. The symbol (✤) is a decorative asterisk with four balloon-shaped spokes, often used for bullets and list markers.✤ or ✤) go in markup. The CSS escape \2724 is used in stylesheets, typically on ::before or ::after. Both produce ✤.✤) or decimal (✤) codes, which is standard for decorative Dingbats asterisks.Explore More HTML Entities!
Discover 1500+ HTML character references — symbols, math, and more.
8 people found this page helpful
