HTML Entity for Black Florette (✿)

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

What You'll Learn

How to display Black Florette (✿) in HTML and CSS. This character is U+273F in the Dingbats block (U+2700–U+27BF), approved in Unicode 1.1 (1993). It is a fleuron (printer’s flower)—a stylized five-petaled flower with dark petals and a contrasting white centre.

There is no named HTML entity for U+273F. Use ✿ or ✿ in markup, or \273F in stylesheet content. The symbol suits decorative design, bullet points, section separators, and typographic ornamentation. Pair ornamental glyphs with visible text or aria-label when they convey meaning.

⚡ Quick Reference — Black Florette

Unicode U+273F

Dingbats (U+2700–U+27BF)

Hex Code ✿

Hexadecimal reference

HTML Code ✿

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+273F
Hex code       ✿
HTML code      ✿
Named entity   —
CSS code       \273F
1

Complete HTML Example

This example shows U+273F using hexadecimal and decimal character references, plus a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\273F";
  }
 </style>
</head>
<body>
<p>Black Florette using Hexa Decimal: &#x273F;</p>
<p>Black Florette using HTML Code: &#10047;</p>
<p id="point">Black Florette using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+273F is widely supported in modern browsers; dingbat artwork varies by typeface:

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

👀 Live Preview

See the glyph at different sizes and beside related floral Dingbats (font-dependent):

Large glyph
Section divider ✿ Chapter One · ✿ Chapter Two
Floral pair (U+273F & U+2740) ✿ ❀
Caption U+273F is BLACK FLORETTE; U+2740 is WHITE FLORETTE in Dingbats.
Monospace refs &#x273F; &#10047; \273F

🧠 How It Works

1

Hexadecimal Code

&#x273F; references code point U+273F using hex digits 273F after the #x prefix.

HTML markup
2

Decimal HTML Code

&#10047; is the decimal equivalent (10047) for the same Black Florette character.

HTML markup
3

CSS Entity

\273F is the CSS escape for U+273F, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

Hex, decimal, and CSS escapes all produce . There is no named HTML entity for U+273F.

Use Cases

The Black Florette (✿) is commonly used for:

🌸 Decorative design

Floral patterns, headers, borders, and ornamental accents in web and print.

📋 Bullet points

Alternative list markers and emphasis indicators in content.

📝 Section separators

Dividers between sections, pull quotes, and typographic ornamentation.

🎨 Artistic projects

Invitations, cards, logos, and creative layouts with floral motifs.

📝 Typography

Fleurons, printer’s flowers, and classic typographic embellishment.

💬 Social & messaging

Decorative accents in posts, captions, and messages.

♿ Accessibility

Pair ✿ with text or ARIA when the symbol is decorative but needs context.

💡 Best Practices

Do

  • Use hex or decimal consistently—there is no named entity for U+273F
  • Pair ✿ with floral themes; related symbols include ❀ (white florette)
  • Scale with font-size so the florette fits your layout
  • Choose fonts that support the Dingbats block (U+2700–U+27BF)
  • Use \273F only inside CSS content, not inside HTML text nodes
  • Add aria-hidden="true" when purely decorative, or text for meaningful markers

Don’t

  • Confuse U+273F (black florette) with U+2740 (white florette) or emoji flowers
  • Rely on ✿ alone to communicate meaning in critical UI
  • Assume every font renders Dingbats crisply at small sizes
  • Use ornamental glyphs as the only navigation or state cue
  • Mix CSS escapes into HTML text nodes (use numeric refs in markup)

Key Takeaways

1

Two numeric references render the same glyph

&#x273F; &#10047;
2

CSS content escape

\273F
3

U+273F is a fleuron; pairs with White Florette U+2740

4

Dingbats block U+2700–U+27BF; no named HTML entity

5

Pair ornamental glyphs with text or ARIA when meaning must be clear

❓ Frequently Asked Questions

Use &#x273F; (hex), &#10047; (decimal), or \273F in CSS content. There is no named entity; all valid methods render ✿.
U+273F (hex 273F, decimal 10047). Dingbats (U+2700–U+27BF). Unicode name BLACK FLORETTE.
For decorative design, bullet points, section separators, floral patterns, typographic embellishment, and classic printer’s flowers.
Numeric references belong in HTML. The \273F escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x273F;, &#10047;, or \273F in CSS depending on whether you are authoring markup or styles.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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