HTML Entity for White Florette (❀)

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

What You'll Learn

How to display the White Florette symbol (❀) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2740 (WHITE FLORETTE) in the Dingbats block (U+2700–U+27BF)—a flower-like decorative ornament.

Render it with ❀, ❀, or CSS escape \2740. There is no named HTML entity. Do not confuse ❀ with ❁ (eight petalled black florette) or ✿ (black florette).

⚡ Quick Reference — White Florette

Unicode U+2740

Dingbats

Hex Code ❀

Hexadecimal reference

HTML Code ❀

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2740
Hex code       ❀
HTML code      ❀
Named entity   (none)
CSS code       \2740
Meaning        White florette
Related        U+273F = ✿ (black florette)
               U+2741 = ❁ (eight petalled black florette)
               U+273E = ✾ (six petalled black and white florette)
Block          Dingbats (U+2700–U+27BF)
1

Complete HTML Example

A simple example showing White Florette (❀) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #flower:after{
   content: "\2740";
  }
 </style>
</head>
<body>
<p>White Florette (hex): &#x2740;</p>
<p>White Florette (decimal): &#10048;</p>
<p id="flower">White Florette (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

U+2740 is supported in modern browsers when the font includes Dingbats glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See White Florette (❀) in context:

Large glyph
Section divider❀ Spring Collection ❀
Florette pair✿ ❀
Not the same as❁ (U+2741, eight petalled black florette)
Numeric refs&#x2740; &#10048; \2740

🧠 How It Works

1

Hexadecimal Code

&#x2740; uses the Unicode hexadecimal value 2740 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#10048; uses the decimal Unicode value 10048 to display the same character. A common method for symbol characters in HTML.

HTML markup
3

CSS Entity

\2740 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+2740 is the white florette in Dingbats. Not the same as ❁ (eight petalled black florette) or ✿ (black florette).

Use Cases

White Florette (❀) is commonly used in:

✨ Decorative Elements

Headers, footers, and design accents with floral ornamentation.

🌸 Floral Designs

Garden-themed sites, nature content, and floral design projects.

🎨 Ornamental Accents

Graphic design, logos, and creative content needing flower imagery.

🖼 Visual Embellishments

Section dividers, bullet substitutes, and decorative highlights.

🌿 Nature-Themed Content

Botanical websites, gardening guides, and nature articles.

🎨 Creative Projects

Artistic content, portfolios, and design showcases.

🌱 Seasonal Content

Spring-themed pages, floral arrangements, and seasonal designs.

💡 Best Practices

Do

  • Use ❀ for a light outline florette; use ❁ for the filled black variant
  • Pair decorative glyphs with accessible text or aria-hidden="true" when purely ornamental
  • Pick one numeric style (hex or decimal) per project for consistency
  • Use fonts that support Dingbats characters
  • Test rendering across browsers and devices

Don’t

  • Confuse ❀ (white florette) with ❁ (eight petalled black florette) or ✿ (black florette)
  • Use the florette as the only navigation or action cue
  • Mix entity styles randomly in one file
  • Use CSS escape \2740 inside HTML markup
  • Expect a named HTML entity—none exists for ❀

Key Takeaways

1

Type ❀ directly, or use hex/decimal references

&#x2740; &#10048;
2

For CSS stylesheets, use the escape in the content property

\2740
3

Unicode U+2740 — WHITE FLORETTE (Dingbats)

4

U+273F/U+2740/U+2741 are related black, white, and filled florette ornaments

❓ Frequently Asked Questions

Use &#x2740; (hex), &#10048; (decimal), or \2740 in CSS content. There is no named HTML entity. In UTF-8 you can also type ❀ directly.
U+2740 (WHITE FLORETTE). Dingbats block U+2700–U+27BF. Hex 2740, decimal 10048.
For decorative elements, floral designs, ornamental accents, garden-themed content, nature-related pages, and visual embellishments.
HTML entities (&#10048; or &#x2740;) go directly in markup. The CSS escape \2740 is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.
Named HTML entities are reserved for commonly used ASCII, Latin-1, and widely recognized symbols. Dingbats like ❀ use numeric codes. Use &#10048; or &#x2740; in HTML, or \2740 in CSS.

Explore More HTML Entities!

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