HTML Entity for Heavy Teardrop Spoked Asterisk (✽)

What You'll Learn
How to display the Heavy Teardrop Spoked Asterisk (✽) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+273D (HEAVY TEARDROP SPOKED ASTERISK) in the Dingbats block (U+2700–U+27BF). It is a bold ornamental asterisk with teardrop-shaped spokes—ideal for bullet points, footnotes, emphasis, and decorative typography in web design.
Render it with ✽, ✽, or CSS escape \273D. There is no named HTML entity. Do not confuse ✽ with U+2731 (✱, heavy asterisk) or U+273C (✼, pinwheel variant); each code point has a different glyph.
⚡ Quick Reference — Teardrop Spoked Asterisk
U+273DDingbats block
✽Hexadecimal reference
✽Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+273D
Hex code ✽
HTML code ✽
Named entity (none)
CSS code \273D
Meaning Heavy teardrop spoked asterisk
Related U+2731 = heavy asterisk (✱)
U+273B = teardrop spoked (✻)
U+273C = pinwheel variant (✼)Complete HTML Example
This example demonstrates the Heavy Teardrop Spoked Asterisk (✽) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\273D";
}
</style>
</head>
<body>
<p>Teardrop Spoked Asterisk using Hexadecimal: ✽</p>
<p>Teardrop Spoked Asterisk using HTML Code: ✽</p>
<p id="point">Teardrop Spoked Asterisk using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Heavy Teardrop Spoked Asterisk (✽) is widely supported in modern browsers when the font includes Dingbats decorative glyphs:
👀 Live Preview
Heavy Teardrop Spoked Asterisk (✽) in context, compared with related asterisk symbols:
✽ Second item
🧠 How It Works
Hexadecimal Code
✽ uses the Unicode hexadecimal value 273D to display the heavy teardrop spoked asterisk. The x prefix indicates hexadecimal format.
Decimal HTML Code
✽ uses the decimal Unicode value 10045 to display the same character.
CSS Entity
\273D 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+273D is in the Dingbats block. Next: Pinwheel Asterisk.
Use Cases
The Heavy Teardrop Spoked 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.
Ornamental markers in reviews, feature lists, and rating-style layouts.
content: "\273D" 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: "\273D"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+273D (✽) with U+2731 (✱) or U+273C (✼)
- Expect a named HTML entity for U+273D
- Use CSS
\273Din HTML text nodes - Overuse decorative asterisks in long body copy
Key Takeaways
Two HTML numeric references plus CSS insert U+273D
✽ ✽For CSS, use \273D in the content property
Unicode U+273D — heavy teardrop spoked asterisk (✽)
Distinct from heavy asterisk U+2731 (✱) and pinwheel U+273C (✼)
Next: Pinwheel Asterisk
❓ Frequently Asked Questions
✽ (hex), ✽ (decimal), or \273D in CSS content. There is no named entity. All three methods render the asterisk (✽) correctly.U+273D (HEAVY TEARDROP SPOKED ASTERISK). Dingbats block. Hex 273D, decimal 10045. The symbol (✽) is a decorative heavy asterisk with teardrop-shaped spokes.✽ or ✽) go in markup. The CSS escape \273D 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
