HTML Entity for Rotated Floral Heart Bullet (❧)

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

What You'll Learn

How to display the Rotated Floral Heart Bullet (❧) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2767 (ROTATED FLORAL HEART BULLET) in the Dingbats block (U+2700–U+27BF)—a decorative ornamental bullet with a floral heart motif.

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

⚡ Quick Reference — Rotated Floral Heart Bullet

Unicode U+2767

Dingbats

Hex Code ❧

Hexadecimal reference

HTML Code ❧

Decimal reference

Named Entity

Use numeric codes only

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

Complete HTML Example

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

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

🌐 Browser Support

The Rotated Floral 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 Floral Heart Bullet (❧) rendered live in different contexts:

Decorative list ❧ Welcome guests ❧ Ceremony details ❧ Reception
Large glyph
Symbol comparison ❧ ❦ ♥
Inline accent With love ❧ always.
Numeric refs &#x2767; &#10087; \2767
CSS list bullet Use list-style-type or ::marker with \2767 for custom bullets.

🧠 How It Works

1

Hexadecimal Code

&#x2767; uses the Unicode hexadecimal value 2767. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2767 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+2767 is in Dingbats. There is no named HTML entity. Previous: Rotated Capital Q (U+213A).

Use Cases

The Rotated Floral Heart Bullet (❧) is commonly used in:

📄 Decorative Lists

Style elegant bullet lists in invitations and formal pages.

🎨 Creative Typography

Add ornamental flair to headings and artistic layouts.

🌸 Floral Designs

Use in botanical, wedding, and nature-themed websites.

💍 Wedding Content

Decorate wedding sites, RSVPs, and ceremony programs.

💕 Romantic Content

Include in love-themed pages and Valentine designs.

✨ Ornamental Accents

Use as a subtle divider or decorative marker in copy.

💡 Best Practices

Do

  • Use &#x2767; or &#10087; for inline decorative bullets
  • Apply \2767 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+2767
  • Use CSS escape \2767 inside HTML text nodes
  • Confuse ❧ with ❦ or standard heart ♥
  • Overuse ornamental bullets in dense body text
  • Use HTML entities in JS (use \u2767 instead)

Key Takeaways

1

Three methods render ❧ — no named entity

&#x2767; &#10087;
2

For CSS, use \2767 in content or list markers

3

Unicode U+2767 — ROTATED FLORAL HEART BULLET in Dingbats

4

Ideal for decorative lists, weddings, and floral-themed design

❓ Frequently Asked Questions

Use &#x2767; (hex), &#10087; (decimal), or \2767 in CSS content. There is no named HTML entity. All three render ❧.
U+2767 (ROTATED FLORAL HEART BULLET). Dingbats block (U+2700–U+27BF). Hex 2767, decimal 10087.
In decorative lists, creative typography, floral designs, wedding invitations, romantic content, and ornamental bullet styling.
HTML references (&#10087; or &#x2767;) go in markup. The CSS escape \2767 is used in stylesheets on ::before, ::after, or ::marker.
Named HTML entities cover a subset of common characters. Dingbats like U+2767 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