HTML Entity for Heavy Teardrop Spoked Pinwheel Asterisk (❃)

What You'll Learn
How to display the Heavy Teardrop Spoked Pinwheel Asterisk (❃) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2743 (HEAVY TEARDROP SPOKED PINWHEEL ASTERISK) in the Dingbats block (U+2700–U+27BF). It is a decorative pinwheel-style asterisk with teardrop-shaped spokes—ideal for bullet points, floral or seasonal themes, emphasis, and ornamental typography in web design.
Render it with ❃, ❃, or CSS escape \2743. There is no named HTML entity. Do not confuse ❃ with U+273D (✽, teardrop spoked asterisk) or U+2731 (✱, heavy asterisk); each code point has a different glyph.
⚡ Quick Reference — Pinwheel Asterisk
U+2743Dingbats block
❃Hexadecimal reference
❃Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2743
Hex code ❃
HTML code ❃
Named entity (none)
CSS code \2743
Meaning Heavy teardrop spoked pinwheel asterisk
Related U+273D = teardrop spoked (✽)
U+2731 = heavy asterisk (✱)
U+273B = teardrop spoked (✻)Complete HTML Example
This example demonstrates the Heavy Teardrop Spoked Pinwheel Asterisk (❃) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2743";
}
</style>
</head>
<body>
<p>Pinwheel Asterisk using Hexadecimal: ❃</p>
<p>Pinwheel Asterisk using HTML Code: ❃</p>
<p id="point">Pinwheel Asterisk using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Heavy Teardrop Spoked Pinwheel Asterisk (❃) is widely supported in modern browsers when the font includes Dingbats decorative glyphs:
👀 Live Preview
Heavy Teardrop Spoked Pinwheel Asterisk (❃) in context, compared with related asterisk symbols:
❃ Second item
🧠 How It Works
Hexadecimal Code
❃ uses the Unicode hexadecimal value 2743 to display the heavy teardrop spoked pinwheel asterisk. The x prefix indicates hexadecimal format.
Decimal HTML Code
❃ uses the decimal Unicode value 10051 to display the same character.
CSS Entity
\2743 is used in CSS stylesheets, particularly in content on ::before for custom bullets and footnote markers.
Same visual result
All three methods produce ❃. Unicode U+2743 is in the Dingbats block. Next: Heavy Triangle Headed Right Arrow.
Use Cases
The Heavy Teardrop Spoked Pinwheel Asterisk (❃) is commonly used in:
Decorative list markers and ornamental bullet points in articles and landing pages.
Footnote markers, annotations, and reference symbols in editorial content.
Visual emphasis in headings, callouts, and highlighted phrases.
Spring, floral, or nature-themed designs where a flower-like pinwheel symbol fits.
content: "\2743" on ::before for custom list styling without extra HTML.
Magazine-style typography and design-heavy editorial layouts.
💡 Best Practices
Do
- Use semantic
<ul>/<li>for lists; style with ❃ via CSS if desired - Use
content: "\2743"onli::beforefor ornamental bullets - Pair footnote markers with accessible link text to the note
- Declare UTF-8 with
<meta charset="utf-8"> - Keep one numeric style (hex or decimal) per project
- Use sparingly so ornamental asterisks retain impact
Don’t
- Replace required list semantics with asterisks alone
- Confuse U+2743 (❃) with U+273D (✽) or U+2731 (✱)
- Expect a named HTML entity for U+2743
- Use CSS
\2743in HTML text nodes - Overuse decorative asterisks in long body copy
Key Takeaways
Two HTML numeric references plus CSS insert U+2743
❃ ❃For CSS, use \2743 in the content property
Unicode U+2743 — heavy teardrop spoked pinwheel asterisk (❃)
Distinct from teardrop spoked U+273D (✽) and heavy asterisk U+2731 (✱)
❓ Frequently Asked Questions
❃ (hex), ❃ (decimal), or \2743 in CSS content. There is no named entity. All three methods render the asterisk (❃) correctly.U+2743 (HEAVY TEARDROP SPOKED PINWHEEL ASTERISK). Dingbats block. Hex 2743, decimal 10051. The symbol (❃) is a decorative pinwheel-style asterisk with teardrop-shaped spokes.❃ or ❃) go in markup. The CSS escape \2743 is used in stylesheets, typically on ::before or ::after. Both produce ❃.❃) or decimal (❃) codes, which is standard for decorative Dingbats characters.Explore More HTML Entities!
Discover 1500+ HTML character references — symbols, math, and more.
8 people found this page helpful
