HTML Entity for Floral Heart (❦)

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

What You'll Learn

How to display the Floral heart symbol (❦) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2766 (FLORAL HEART) in the Dingbats block (U+2700–U+27BF)—a decorative heart-shaped dingbat, also called the rotated floral heart bullet, used in love-themed content, cards, and elegant design.

Render it with ❦, ❦, or CSS escape \2766. There is no named HTML entity. Do not confuse ❦ with ❥ (floral heart, different orientation) or emoji hearts (❤, U+2764).

⚡ Quick Reference — Floral Heart

Unicode U+2766

Dingbats block

Hex Code ❦

Hexadecimal reference

HTML Code ❦

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2766
Hex code       ❦
HTML code      ❦
Named entity   (none)
CSS code       \2766
Meaning        Rotated floral heart bullet (decorative)
Related        U+2765 = Floral heart (❥); U+2764 = Heavy black heart (❤)
1

Complete HTML Example

This example demonstrates the Floral heart (❦) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2766";
  }
 </style>
</head>
<body>
<p>Floral Heart using Hexadecimal: &#x2766;</p>
<p>Floral Heart using HTML Code: &#10086;</p>
<p id="point">Floral Heart using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Floral heart symbol is widely supported in modern browsers with a suitable font:

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

👀 Live Preview

See the floral heart (❦) in decorative and love-themed context:

Love message With love ❦ Thank you
Section divider ❦ ❦ ❦
vs heavy heart floral ❦   vs   ❤
Large glyph
Numeric refs &#x2766; &#10086; \2766

🧠 How It Works

1

Hexadecimal Code

&#x2766; uses the Unicode hexadecimal value 2766 to display the Floral heart symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2766 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+2766 is in Dingbats. Rotated floral heart bullet. No named HTML entity.

Use Cases

The Floral heart symbol (❦) is commonly used in:

✨ Decorative design

Elegant heart accents in headers, footers, dividers, and decorative blocks.

💝 Valentine & love

Valentine’s Day content, love messages, romance, and relationship sites.

💌 Cards & invites

Digital greeting cards, invitations, and thank-you messages.

📱 Social & blogs

Decorate posts, captions, and blog content with a distinctive heart.

📋 List bullets

Custom bullets or list markers for favorites, tips, or feature lists.

🎁 Gift & lifestyle

Gift guides, lifestyle articles, and product pages with heart motifs.

💡 Best Practices

Do

  • Add aria-label="floral heart" when the symbol carries meaning
  • Use the CSS escape in ::before / ::after for bullets and dividers
  • Use a font that supports Dingbats (Segoe UI Symbol, etc.)
  • Use &#x2766; or &#10086; consistently within a project
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ❦ with ❥ (different floral heart) or ❤ (heavy black heart)
  • Expect a named entity—none exists for U+2766
  • Put CSS escape \2766 in HTML text nodes
  • Use purely decorative hearts without accessible text when they convey structure
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references plus CSS render ❦

&#x2766; &#10086;
2

For CSS stylesheets, use the escape in the content property

\2766
3

Unicode U+2766 — FLORAL HEART (rotated floral heart bullet)

4

Dingbats block (U+2700–U+27BF)

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x2766; (hex), &#10086; (decimal), or \2766 in CSS content. There is no named entity.
U+2766 (FLORAL HEART). Dingbats block (U+2700–U+27BF). Hex 2766, decimal 10086. Decorative heart-shaped dingbat; rotated floral heart bullet.
In decorative content and design, Valentine and love-themed pages, greeting cards and e-cards, social and blog posts, gift and lifestyle content, bullet points and list styling, and headers or dividers.
HTML references (&#10086; or &#x2766;) go in markup. The CSS escape \2766 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover a subset of common characters. Symbols in the Dingbats block like U+2766 use numeric codes (hexadecimal or decimal). This is standard practice for such symbols in HTML.

Explore More HTML Entities!

Discover 1500+ HTML character references — dingbats, hearts, and decorative symbols.

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