HTML Entity for Reverse Rotated Floral Heart Bullet (☙)

What You'll Learn
How to display the Reverse Rotated Floral Heart Bullet (☙) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2619 (REVERSED ROTATED FLORAL HEART BULLET) in the Miscellaneous Symbols block (U+2600–U+26FF)—a decorative ornamental bullet used in creative design, typography, and stylized lists.
Render it with ☙, ☙, or CSS escape \2619. There is no named HTML entity. Do not confuse ☙ with U+2767 (❧, rotated floral heart bullet) or U+2766 (❦, floral heart in Dingbats).
⚡ Quick Reference — Reverse Rotated Floral Heart Bullet
U+2619Miscellaneous Symbols (U+2600–U+26FF)
☙Hexadecimal reference
☙Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2619
Hex code ☙
HTML code ☙
Named entity (none)
CSS code \2619
Meaning Reversed rotated floral heart bullet
Related U+2767 = rotated floral heart bullet (❧)
U+2766 = floral heart (❦)
U+2764 = heavy black heart (❤)
Block Miscellaneous Symbols (U+2600–U+26FF)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: "\2619";
}
</style>
</head>
<body>
<p>Floral heart bullet (hex): ☙</p>
<p>Floral heart bullet (decimal): ☙</p>
<p id="point">Floral heart bullet (CSS): </p>
</body>
</html>🌐 Browser Support
The Reverse Rotated Floral Heart Bullet (☙) is widely supported in all modern browsers:
👀 Live Preview
See the Reverse Rotated Floral Heart Bullet (☙) in decorative contexts:
🧠 How It Works
Hexadecimal Code
☙ uses the Unicode hexadecimal value 2619 to display the reverse rotated floral heart bullet.
Decimal HTML Code
☙ uses the decimal Unicode value 9753 for the same character.
CSS Entity
\2619 is used in CSS stylesheets in the content property of pseudo-elements.
Reverse rotated floral heart bullet result
All three methods render ☙. Unicode U+2619 in Miscellaneous Symbols. Next: Reverse Tilde Equals.
Use Cases
The Reverse Rotated Floral Heart Bullet (☙) is commonly used in:
Artistic projects, creative layouts, and ornamental page elements.
Stylized bullet points, elegant lists, and decorative text formatting.
Poetry, invitations, cards, and love-themed or floral branding.
Landing pages, portfolios, and creative websites needing unique bullets.
Custom bullets via ::before and content in stylesheets.
Treat ☙ as decorative; provide meaningful text when it conveys information.
💡 Best Practices
Do
- Use
☙or☙for inline decorative bullets - Set
<meta charset="utf-8">for reliable rendering - Use CSS
\2619in::beforefor custom list markers - Test rendering in your target fonts for Miscellaneous Symbols
- Pick one numeric style per project for consistency
Don’t
- Confuse ☙ with floral heart ❦ or rotated floral heart bullet ❧
- Use padded Unicode notation like U+02619—the correct value is
U+2619 - Use CSS escape
\2619in HTML text nodes - Overuse ornamental bullets—they work best as accents
- Assume every font renders decorative symbols identically
Key Takeaways
Two HTML numeric references plus CSS for U+2619
☙ ☙For CSS stylesheets, use \2619 in the content property
Unicode U+2619 — REVERSED ROTATED FLORAL HEART BULLET (☙)
Distinct from floral heart ❦, rotated floral heart bullet ❧, and heavy heart ❤
Previous: Reverse Prime (‵) Next: Reverse Tilde Equals
❓ Frequently Asked Questions
☙ (hex), ☙ (decimal), or \2619 in CSS content. There is no named entity. All three render ☙.U+2619 (REVERSED ROTATED FLORAL HEART BULLET). Miscellaneous Symbols block (U+2600–U+26FF). Hex 2619, decimal 9753.Explore More HTML Entities!
Discover 1500+ HTML character references — decorative symbols, punctuation, math operators, and more.
8 people found this page helpful
