HTML Entity for Four Club Spoked Asterisk (✤)

What You'll Learn
How to display the Four Club Spoked Asterisk (✤) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2724 (FOUR CLUB-SPOKED ASTERISK) in the Dingbats block (U+2700–U+27BF)—a decorative asterisk variant with club-shaped spokes, ideal for creative typography, list markers, and design elements.
Render it with ✤, ✤, or CSS escape \2724. There is no named HTML entity. Do not confuse ✤ with ✣ (balloon spoked, U+2723) or ✥ (teardrop spoked, U+2725).
⚡ Quick Reference — Four Club 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 Decorative club spoked asterisk
Related U+2723 = Balloon (✣); U+2725 = Teardrop (✥)Complete HTML Example
This example demonstrates the Four Club Spoked Asterisk (✤) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2724";
}
</style>
</head>
<body>
<p>Four Club Spoked Asterisk using Hexadecimal: ✤</p>
<p>Four Club Spoked Asterisk using HTML Code: ✤</p>
<p id="point">Four Club Spoked Asterisk using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Four Club Spoked Asterisk is widely supported in modern browsers with a suitable font:
👀 Live Preview
See the four club spoked asterisk (✤) as a decorative bullet and compared with related Dingbats:
🧠 How It Works
Hexadecimal Code
✤ uses the Unicode hexadecimal value 2724 to display the Four Club Spoked 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 the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ✤. Unicode U+2724 is in Dingbats. No named HTML entity—use numeric codes in markup.
Use Cases
The Four Club Spoked Asterisk (✤) is commonly used in:
Headers, section dividers, and creative text styling with a distinctive spoked asterisk.
Custom bullet points for lists, feature highlights, or menu items.
Logos, icons, and visual motifs using a unique club-spoked symbol.
Wedding invites, event flyers, and greeting cards with decorative symbols.
Footnotes, highlights, or special callout markers in articles and docs.
Cross-browser symbol display without image assets.
💡 Best Practices
Do
- Add
aria-label="club spoked asterisk"when the symbol carries meaning - Use the CSS escape in
::before/::afterfor bullets and dividers - Ensure fonts support Dingbats (Segoe UI Symbol, etc.)
- Use
✤or✤consistently within a project - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse ✤ (club) with ✣ (balloon) or ✥ (teardrop)
- Expect a named entity—none exists for U+2724
- Put CSS escape
\2724in HTML text nodes - Use the glyph alone without accessible text when it conveys structure
- Mix entity styles randomly in one file
Key Takeaways
Two HTML numeric references plus CSS render ✤
✤ ✤For CSS stylesheets, use the escape in the content property
\2724Unicode U+2724 — FOUR CLUB-SPOKED ASTERISK
Dingbats block (U+2700–U+27BF)
Three methods, no named HTML entity
❓ Frequently Asked Questions
✤ (hex), ✤ (decimal), or \2724 in CSS content. There is no named entity.U+2724 (FOUR CLUB-SPOKED ASTERISK). Dingbats block (U+2700–U+27BF). Hex 2724, decimal 10020. A decorative asterisk with club-shaped spokes.✤ or ✤) go in markup. The CSS escape \2724 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.Explore More HTML Entities!
Discover 1500+ HTML character references — Dingbats, decorative symbols, and more.
8 people found this page helpful
