HTML Entity for Reverse Rotated Floral Heart Bullet (☙)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+2619

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

Unicode U+2619

Miscellaneous Symbols (U+2600–U+26FF)

Hex Code ☙

Hexadecimal reference

HTML Code ☙

Decimal reference

Named Entity

Use numeric codes only

Reference Table
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)
1

Complete HTML Example

A simple example showing ☙ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2619";
  }
 </style>
</head>
<body>
<p>Floral heart bullet (hex): &#x2619;</p>
<p>Floral heart bullet (decimal): &#9753;</p>
<p id="point">Floral heart bullet (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Reverse Rotated Floral Heart Bullet (☙) is widely supported in all modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Reverse Rotated Floral Heart Bullet (☙) in decorative contexts:

Single symbol
Ornamental list ☙ Elegant bullet point  |  ☙ Decorative divider
Paired ornament ☙ Love & design ❧
Not the same as Floral heart ❦  |  Heavy heart ❤
Numeric refs &#x2619; &#9753; \2619

🧠 How It Works

1

Hexadecimal Code

&#x2619; uses the Unicode hexadecimal value 2619 to display the reverse rotated floral heart bullet.

HTML markup
2

Decimal HTML Code

&#9753; uses the decimal Unicode value 9753 for the same character.

HTML markup
3

CSS Entity

\2619 is used in CSS stylesheets in the content property of pseudo-elements.

CSS stylesheet
=

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:

🎨 Decorative design

Artistic projects, creative layouts, and ornamental page elements.

📝 Typography

Stylized bullet points, elegant lists, and decorative text formatting.

💬 Creative content

Poetry, invitations, cards, and love-themed or floral branding.

🌐 Web design

Landing pages, portfolios, and creative websites needing unique bullets.

📋 CSS list markers

Custom bullets via ::before and content in stylesheets.

♿ Accessibility

Treat ☙ as decorative; provide meaningful text when it conveys information.

💡 Best Practices

Do

  • Use &#x2619; or &#9753; for inline decorative bullets
  • Set <meta charset="utf-8"> for reliable rendering
  • Use CSS \2619 in ::before for 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 \2619 in HTML text nodes
  • Overuse ornamental bullets—they work best as accents
  • Assume every font renders decorative symbols identically

Key Takeaways

1

Two HTML numeric references plus CSS for U+2619

&#x2619; &#9753;
2

For CSS stylesheets, use \2619 in the content property

3

Unicode U+2619 — REVERSED ROTATED FLORAL HEART BULLET (☙)

4

Distinct from floral heart ❦, rotated floral heart bullet ❧, and heavy heart ❤

❓ Frequently Asked Questions

Use &#x2619; (hex), &#9753; (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.
No. ☙ (U+2619) is the reversed rotated floral heart bullet. ❦ (U+2766) is FLORAL HEART in the Dingbats block. They are different Unicode characters.
For decorative symbols, design elements, creative content, typography, ornamental text, decorative lists, and branding that needs unique ornamental bullets.
Named HTML entities cover common characters. U+2619 uses numeric hex or decimal codes or CSS escapes, which is standard for Miscellaneous Symbols and decorative dingbats.

Explore More HTML Entities!

Discover 1500+ HTML character references — decorative symbols, punctuation, math operators, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful