HTML Entity for Rotated Heavy Black Heart Bullet (❥)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2765

What Is the Rotated Heavy Black Heart Bullet Entity?

Rotated Heavy Black Heart Bullet (❥) is the Dingbats character at Unicode U+2765 (ROTATED HEAVY BLACK HEART BULLET). It is a solid, rotated heart used as a decorative bullet — common in romantic lists and love-themed layouts.

Remember
Character     ❥
Unicode       U+2765
Hex entity    ❥
Decimal       ❥
Named entity  (none)
CSS escape    \2765
Not the same  ❧ · ♥ (♥)

Hex, decimal, CSS, and a typed character all produce the same glyph: ❥. Prefer ❥ when you want an explicit entity.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Hex entity❥HTML markup (best entity default)
Decimal entity❥HTML markup
Named entityNoneHTML5 does not define one
CSS escape\2765Stylesheet content / ::marker
Direct character❥UTF-8 HTML text

When to Use Which

SituationUse
Readable numeric entity in HTML❥
Decimal entity required❥
Custom list bullets via CSScontent: "\2765" on ::marker / ::before
Floral heart bullet (ornate)Use U+2767
Card-suit heartUse ♥ (U+2665)

Live Preview

Rotated Heavy Black Heart Bullet in decorative list and label contexts.

Bullet list style ❥ Favorites   ❥ Memories   ❥ Notes
Large glyph ❥
Hex entity ❥ → ❥
vs ❧ / ♥ ❥  |  ❧  |  ♥
With entities Hex: ❥ | Decimal: ❥

Complete HTML Example

One page that shows this symbol with hex, decimal, and CSS. Use View Output or open the live editor.

Hex + Decimal + CSS

Three ways to produce ❥ in a single document (no named entity).

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Rotated Heavy Black Heart Bullet (❥)</title>
  <style>
    #point::after {
      content: "\2765";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x2765;</p>
  <p>Using HTML Code: &#10085;</p>
  <p id="point">Using CSS Entity: </p>
  <p><code>Made with love &#x2765;</code></p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+2765 → &#x2765; in HTML. The browser turns it into ❥.

2. Decimal: same code point as 10085 → &#10085;. Same result as hex.

3. Named: HTML5 does not define a named entity for this character — use hex or decimal instead.

4. CSS: use \2765 in content (not an HTML entity). #point::after appends that ❥ after the paragraph text.

Pitfalls & Tips

Common mistakes when working with Rotated Heavy Black Heart Bullet.

Look-alikes

❥ ≠ ❧ ≠ ♥

U+2765 is the heavy black rotated bullet. U+2767 is floral. &hearts; is the card suit — pick the heart you mean.

Named

No &…; name

Do not invent a name. Use &#x2765; or &#10085;.

Fonts

Glyph may be missing

Dingbats coverage varies. Test on your target devices or provide a fallback font / bullet.

CSS vs HTML

Do not mix escapes

\2765 belongs in CSS. &#x2765; / &#10085; belong in HTML.

A11y

Decorative bullets

If the bullet is pure decoration, hide it from assistive tech with aria-hidden="true" and keep the real list semantics.

Semicolon

End references

Always finish with ; — write &#x2765;, not &#x2765.

Browser Support

Rotated Heavy Black Heart Bullet (U+2765) and its entity forms (&#x2765;, &#10085;, CSS \\2765) are supported in all modern browsers. Glyph coverage depends on the font.

✓ Universal encoding

Rotated Heavy Black Heart Bullet (&#x2765;)

Encode with hex, decimal, or CSS escape — or type ❥ directly in UTF-8 HTML. No named entity.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes*
U+2765 Full support

Bottom line: Prefer &#x2765; for readable HTML. Use \\2765 only inside CSS content.

Key Takeaways

  • Unicode: this symbol is U+2765 (decimal 10085).
  • HTML: prefer &#x2765; — or use &#10085;. No named entity.
  • CSS: use \2765 inside content for generated bullets.
  • Watch out: U+2765 ≠ U+2767 ≠ &hearts;.

One line: U+2765 → &#x2765; / &#10085; / CSS \2765 (no named entity).

Frequently Asked Questions

Use &#x2765; (hex), &#10085; (decimal), or the CSS escape \2765 in the content property (including ::marker for lists). All render ❥ when the font supports Dingbats. There is no named HTML entity.
U+2765 (ROTATED HEAVY BLACK HEART BULLET). Hex 2765, decimal 10085. It belongs to the Dingbats block (U+2700–U+27BF).
No. HTML5 does not define a named entity for U+2765. Use numeric references like &#x2765; or &#10085;.
Use it as a decorative heart list bullet, romantic accent, or love-themed separator. Prefer numeric entities when encoding must be explicit.
HTML entities (&#10085; or &#x2765;) go in markup. The CSS escape \2765 is used in stylesheets (usually in content on ::before/::after or ::marker). Both render ❥.
U+2767 is the rotated floral heart bullet (ornate floral form). &hearts; (U+2665) is the card-suit heart. U+2765 is a heavy black rotated heart bullet — a different Dingbats glyph.

Did you know?

Rotated Heavy Black Heart Bullet is Unicode U+2765 (decimal 10085) — ROTATED HEAVY BLACK HEART BULLET in Dingbats. HTML5 has no named entity — use &#x2765; or &#10085;. Do not confuse it with rotated floral heart bullet U+2767 (❧) or heart suit &hearts; (U+2665).

Next: Ruble Sign

Learn the HTML entity for Ruble Sign — next in this sequence.

Continue tutorial →

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