HTML Entity for Eight Teardrop Spoked Propeller Asterisk (❊)

What You'll Learn
How to display the Eight Teardrop Spoked Propeller Asterisk (❊) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+274A (EIGHT TEARDROP SPOKED PROPELLER ASTERISK) in the Dingbats block (U+2700–U+27BF)—a decorative propeller-style asterisk used in footnotes, references, special formatting, bullets, and creative web projects.
Render it with ❊, ❊, or CSS escape \274A. There is no named HTML entity for this symbol. Compare ✳ (eight spoken asterisk, U+2733) or ✷ (eight pointed rectilinear black star, U+2737) for related Dingbats characters.
⚡ Quick Reference — Eight Teardrop Spoked Propeller Asterisk
U+274ADingbats block
❊Hexadecimal reference
❊Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+274A
Hex code ❊
HTML code ❊
Named entity (none)
CSS code \274A
Related U+2733 = Spoken asterisk (✳); U+2737 = Rectilinear star (✷)Complete HTML Example
This example demonstrates the Eight Teardrop Spoked Propeller Asterisk (❊) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\274A";
}
</style>
</head>
<body>
<p>Eight Teardrop Spoked Propeller Asterisk using Hexadecimal: ❊</p>
<p>Eight Teardrop Spoked Propeller Asterisk using HTML Code: ❊</p>
<p id="point">Eight Teardrop Spoked Propeller Asterisk using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+274A is supported in modern browsers when rendered with a font that includes Dingbats:
👀 Live Preview
See the Eight Teardrop Spoked Propeller Asterisk (❊) in footnotes and formatting contexts:
🧠 How It Works
Hexadecimal Code
❊ uses the Unicode hexadecimal value 274A to display the Eight Teardrop Spoked Propeller Asterisk. The x prefix indicates hexadecimal format.
Decimal HTML Code
❊ uses the decimal Unicode value 10058 to display the same character.
CSS Entity
\274A is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce: ❊. Unicode U+274A 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 Teardrop Spoked Propeller Asterisk (❊) is commonly used in:
Mark footnotes, references, or annotations in articles and docs.
Bullet points, section dividers, and creative layout accents.
Featured items, ratings, or highlights in product listings.
Propeller-style asterisk icons in navigation, forms, and toolbars.
Headers, captions, and special formatting in web content.
Branding, logos, and decorative elements without image assets.
💡 Best Practices
Do
- Use
❊or❊consistently in markup - Use fonts that support Dingbats (system UI, Segoe UI Symbol, Symbola)
- Add
aria-labelwith clear meaning (e.g. “footnote” or “special note”) - 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+274A
- Confuse ❊ (propeller asterisk) with ✳ (spoken asterisk U+2733) or * (ASCII asterisk U+002A)
- Put CSS escape
\274Ain HTML text nodes - Rely on the symbol alone in accessibility-critical interfaces
- Assume decorative fonts include all Dingbats characters
Key Takeaways
Two HTML numeric references render ❊
❊ ❊For CSS stylesheets, use the escape in the content property
\274AUnicode U+274A — EIGHT TEARDROP SPOKED PROPELLER ASTERISK
Dingbats block (U+2700–U+27BF)
Three methods, one glyph — no named HTML entity
❓ Frequently Asked Questions
❊ (hex), ❊ (decimal), or \274A in CSS content. There is no named entity. All produce ❊.U+274A (EIGHT TEARDROP SPOKED PROPELLER ASTERISK). Dingbats block (U+2700–U+27BF). Hex 274A, decimal 10058. A decorative propeller-style asterisk used in footnotes, references, and special symbols.❊ or ❊) go in markup. The CSS escape \274A is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.❊ or ❊ in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — Dingbats, asterisks, music symbols, and more.
8 people found this page helpful
