HTML Entity for Heavy Eight Teardrop Spoked Propeller Asterisk (❋)

What You'll Learn
How to display the Heavy Eight Teardrop Spoked Propeller Asterisk (❋) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+274B (HEAVY EIGHT TEARDROP SPOKED PROPELLER ASTERISK) in the Dingbats block (U+2700–U+27BF). It is a decorative asterisk with eight teardrop-shaped spokes—ideal for custom bullets, footnotes, typographic dividers, and designs that need a distinctive mark beyond the standard * (U+002A).
Render it with ❋, ❋, or CSS escape \274B. There is no named HTML entity. Do not confuse ❋ with U+2738 (✸, rectilinear black star), U+2731 (✱, heavy asterisk), or U+2747 (❇, sparkle).
⚡ Quick Reference — Propeller Asterisk
U+274BDingbats block
❋Hexadecimal reference
❋Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+274B
Hex code ❋
HTML code ❋
Named entity (none)
CSS code \274B
Meaning Teardrop propeller asterisk
Related U+2738 = rectilinear star (✸)
U+2731 = heavy asterisk (✱)Complete HTML Example
This example demonstrates the Heavy Eight Teardrop Spoked Propeller Asterisk (❋) using hexadecimal code, decimal HTML code, and a CSS content escape for list bullets and footnote markers:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\274B";
}
</style>
</head>
<body>
<p>Propeller Asterisk using Hexadecimal: ❋</p>
<p>Propeller Asterisk using HTML Code: ❋</p>
<p id="point">Propeller Asterisk using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Heavy Eight Teardrop Spoked Propeller Asterisk (❋) is widely supported in modern browsers when the font includes Dingbats symbols:
👀 Live Preview
Heavy Eight Teardrop Spoked Propeller Asterisk (❋) in context, compared with related symbols:
🧠 How It Works
Hexadecimal Code
❋ uses the Unicode hexadecimal value 274B to display the asterisk. The x prefix indicates hexadecimal format.
Decimal HTML Code
❋ uses the decimal Unicode value 10059 to display the same character.
CSS Entity
\274B is used in CSS stylesheets, particularly in the content property of pseudo-elements for custom bullets and footnote markers.
Same visual result
All three methods produce ❋. Unicode U+274B is in the Dingbats block. Next: Heavy Exclamation Mark Ornament (❢).
Use Cases
The Heavy Eight Teardrop Spoked Propeller Asterisk (❋) is commonly used in:
Custom list bullets or step markers with a teardrop-asterisk style.
Footnote markers or annotation indicators beyond the standard asterisk.
Dividers, section breaks, or emphasis in editorial and blog layout.
Optional decorative marker for required fields (pair with semantic label/ARIA).
Unique asterisk motif in logos, icons, or brand assets.
content: "\274B" on ::before without extra HTML markup.
💡 Best Practices
Do
- Pair ❋ with text or
aria-labelwhen it conveys meaning (footnote, required) - Use
content: "\274B"on list items via::before - Declare UTF-8 with
<meta charset="utf-8"> - Test propeller-asterisk glyph shape across fonts
- Keep one numeric style (hex or decimal) per project
- Distinguish decorative use from semantic required-field indicators
Don’t
- Rely on ❋ alone for accessibility-critical footnotes or required fields
- Confuse U+274B (❋) with U+2738 (✸) or U+2747 (❇)
- Expect a named HTML entity for U+274B
- Use CSS
\274Bin HTML text nodes - Assume users will read ❋ the same as a plain ASCII asterisk
Key Takeaways
Two HTML numeric references plus CSS insert U+274B
❋ ❋For CSS, use \274B in the content property
Unicode U+274B — teardrop propeller asterisk (❋)
Distinct from rectilinear star U+2738 (✸) and heavy asterisk U+2731 (✱)
Next: Exclamation Ornament (❢)
❓ Frequently Asked Questions
❋ (hex), ❋ (decimal), or \274B in CSS content. There is no named entity. All three methods render the symbol (❋) correctly.U+274B (HEAVY EIGHT TEARDROP SPOKED PROPELLER ASTERISK). Dingbats block. Hex 274B, decimal 10059. The symbol (❋) is a decorative asterisk with eight teardrop-shaped spokes.❋ or ❋) go in markup. The CSS escape \274B is used in stylesheets, typically on ::before or ::after. Both produce ❋.❋) or decimal (❋) codes, which is standard for characters in the Dingbats block.Explore More HTML Entities!
Discover 1500+ HTML character references — symbols, math, and more.
8 people found this page helpful
