HTML Entity for Rotated Heavy Black Heart Bullet (❥)

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

What You'll Learn

How to display the Rotated Heavy Black Heart Bullet (❥) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2765 (ROTATED HEAVY BLACK HEART BULLET) in the Dingbats block (U+2700–U+27BF)—a decorative heart-shaped bullet for lists and romantic styling.

Use ❥, ❥, or CSS \2765. There is no named HTML entity. Do not confuse ❥ with U+2767 (❧, rotated floral heart bullet) or U+2665 (♥, heart suit / ♥).

⚡ Quick Reference — Rotated Heavy Black Heart Bullet

Unicode U+2765

Dingbats

Hex Code ❥

Hexadecimal reference

HTML Code ❥

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2765
Hex code       ❥
HTML code      ❥
Named entity   (none)
CSS code       \2765
Related        U+2767 = rotated floral heart bullet (❧)
               U+2766 = floral heart (❦)
               U+2665 = heart suit (♥ / ♥)
1

Complete HTML Example

A simple example showing the Rotated Heavy Black Heart Bullet (❥) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2765";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x2765;</p>
<p>Symbol (decimal): &#10085;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Rotated Heavy Black Heart Bullet (❥) is supported in all modern browsers when the font includes Dingbats glyphs:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Rotated Heavy Black Heart Bullet (❥) rendered live in different contexts:

Decorative list ❥ Favorite moments ❥ Special memories ❥ Love notes
Large glyph
Symbol comparison ❥ ❧ ♥
Romantic accent Made with love ❥
Numeric refs &#x2765; &#10085; \2765
UI marker Use as a bullet in feature lists or Valentine-themed cards.

🧠 How It Works

1

Hexadecimal Code

&#x2765; uses the Unicode hexadecimal value 2765. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#10085; uses the decimal Unicode value 10085 to display the same character.

HTML markup
3

CSS Entity

\2765 is used in CSS stylesheets in the content property of pseudo-elements like ::before, ::after, or ::marker.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+2765 is in Dingbats. There is no named HTML entity. Previous: Rotated Floral Heart Bullet (U+2767).

Use Cases

The Rotated Heavy Black Heart Bullet (❥) is commonly used in:

📄 Decorative Bullet Points

Style lists and menus with heart-themed bullets.

💕 Romantic Content

Use in love letters, dating sites, and relationship pages.

🎨 Love-Themed Designs

Include in Valentine and wedding design projects.

📝 List Styling

Apply via CSS markers for feature and gift lists.

💍 Valentine Content

Decorate seasonal promotions and special occasions.

💻 Special UI Elements

Add to buttons and cards as a decorative heart marker.

💡 Best Practices

Do

  • Use &#x2765; or &#10085; for inline heart bullets
  • Apply \2765 via CSS ::marker for styled lists
  • Distinguish ❥ from ❧ and ♥
  • Add aria-hidden="true" when purely decorative
  • Verify your font supports Dingbats glyphs

Don’t

  • Assume a named HTML entity exists—there is none for U+2765
  • Use CSS escape \2765 inside HTML text nodes
  • Confuse ❥ with ❧ or standard heart ♥
  • Overuse heart bullets in professional or dense text
  • Use HTML entities in JS (use \u2765 instead)

Key Takeaways

1

Three methods render ❥ — no named entity

&#x2765; &#10085;
2

For CSS, use \2765 in content or list markers

3

Unicode U+2765 — ROTATED HEAVY BLACK HEART BULLET in Dingbats

4

Ideal for romantic lists, Valentine themes, and decorative UI markers

❓ Frequently Asked Questions

Use &#x2765; (hex), &#10085; (decimal), or \2765 in CSS content. There is no named HTML entity. All three render ❥.
U+2765 (ROTATED HEAVY BLACK HEART BULLET). Dingbats block (U+2700–U+27BF). Hex 2765, decimal 10085.
For decorative bullet points, romantic content, love-themed designs, list styling, Valentine content, and special UI elements needing heart-shaped markers.
HTML references (&#10085; or &#x2765;) go in markup. The CSS escape \2765 is used in stylesheets on ::before, ::after, or ::marker.
Named HTML entities cover a subset of common characters. Dingbats like U+2765 use numeric hex or decimal codes or CSS escapes, which is standard for ornamental Unicode blocks.

Explore More HTML Entities!

Discover 1500+ HTML character references — Dingbats, symbols, letters, 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