HTML Entity for Open Centre Teardrop Spoked Asterisk (✼)

What You'll Learn
How to display the Open Centre Teardrop Spoked Asterisk (✼) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+273C (OPEN CENTRE TEARDROP-SPOKED ASTERISK) in the Dingbats block (U+2700–U+27BF)—a decorative spoked asterisk with teardrop-shaped rays and an open centre, useful for custom bullets, design accents, badges, and symbolic typography.
Render it with ✼, ✼, or CSS escape \273C. There is no named HTML entity. Do not confuse ✼ with U+2732 (✲, open centre asterisk), U+273B (✻, teardrop spoked asterisk), U+2733 (✳, eight spoked asterisk), or the ASCII asterisk U+002A (*).
⚡ Quick Reference — Teardrop Spoked Asterisk
U+273CDingbats block
✼Hexadecimal reference
✼Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+273C
Hex code ✼
HTML code ✼
Named entity (none)
CSS code \273C
Meaning Open centre teardrop-spoked asterisk
Related U+2732 = open centre asterisk (✲)
U+273B = teardrop spoked asterisk (✻)
U+2733 = eight spoked asterisk (✳)
U+002A = ASCII asterisk (*)
Block Dingbats (U+2700–U+27BF)Complete HTML Example
A simple example showing ✼ using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\273C";
}
</style>
</head>
<body>
<p>Teardrop spoked asterisk (hex): ✼</p>
<p>Teardrop spoked asterisk (decimal): ✼</p>
<p id="point">Teardrop spoked asterisk (CSS): </p>
</body>
</html>🌐 Browser Support
The Open Centre Teardrop Spoked Asterisk (✼) is widely supported in all modern browsers:
👀 Live Preview
See the Open Centre Teardrop Spoked Asterisk (✼) in decorative contexts:
🧠 How It Works
Hexadecimal Code
✼ uses the Unicode hexadecimal value 273C to display the teardrop spoked asterisk.
Decimal HTML Code
✼ uses the decimal Unicode value 10044 for the same character.
CSS Entity
\273C is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after for custom bullets.
Decorative asterisk result
All three methods render ✼. Unicode U+273C in the Dingbats block. Next: Open Outlined Right Arrow (➾).
Use Cases
The Open Centre Teardrop Spoked Asterisk (✼) is commonly used in:
Distinct list markers and bullet points with a decorative spoked asterisk shape.
Decorative symbols in headers, badges, cards, and typography layouts.
Reference markers and inline notes where a styled asterisk is preferred over *.
Highlighting special items, new features, or premium sections in UI copy.
Icon-like symbols in navigation, tags, and status indicators without image assets.
Character pickers, entity documentation, and Dingbats symbol guides.
Pair decorative ✼ with visible text; do not rely on the symbol alone for meaning.
💡 Best Practices
Do
- Use
✼or✼for inline decorative asterisks - Use CSS
\273Cin::beforefor custom list bullets - Set
<meta charset="utf-8">for reliable rendering - Pick one numeric style per project for consistency
- Provide text context alongside decorative symbols
Don’t
- Confuse ✼ with open centre asterisk ✲, teardrop ✻, or ASCII
* - Use padded Unicode notation like U+0273C—the correct value is
U+273C - Use CSS escape
\273Cin HTML text nodes - Use ✼ as a required footnote marker without accessible text
- Assume every font renders Dingbats identically—test your typeface
Key Takeaways
Two HTML numeric references plus CSS for U+273C
✼ ✼For CSS stylesheets, use \273C in the content property
Unicode U+273C — OPEN CENTRE TEARDROP-SPOKED ASTERISK
Distinct from ✲, ✻, and ASCII *
Previous: Open Centre Cross (✛) Next: Open Outlined Right Arrow (➾)
❓ Frequently Asked Questions
✼ (hex), ✼ (decimal), or \273C in CSS content. There is no named entity. All three render ✼.U+273C (OPEN CENTRE TEARDROP-SPOKED ASTERISK). Dingbats block (U+2700–U+27BF). Hex 273C, decimal 10044.Explore More HTML Entities!
Discover 1500+ HTML character references — punctuation, symbols, and more.
8 people found this page helpful
