HTML Entity for Flower (⚘)

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

What You'll Learn

How to display the Flower symbol (⚘) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2698 (FLOWER) in the Miscellaneous Symbols block (U+2600–U+26FF)—also called the white flower—used for floral decoration, nature-themed content, and elegant design elements.

Render it with ⚘, ⚘, or CSS escape \2698. There is no named HTML entity. Do not confuse ⚘ with the floral heart (❦, Dingbats) or blossom emoji (🌼).

⚡ Quick Reference — Flower

Unicode U+2698

Miscellaneous Symbols

Hex Code ⚘

Hexadecimal reference

HTML Code ⚘

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2698
Hex code       ⚘
HTML code      ⚘
Named entity   (none)
CSS code       \2698
Meaning        White flower / floral symbol
Related        U+2766 = Floral heart (❦); U+2055 = Flower punctuation (⁕)
1

Complete HTML Example

This example demonstrates the Flower symbol (⚘) 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: "\2698";
  }
 </style>
</head>
<body>
<p>Flower using Hexadecimal: &#x2698;</p>
<p>Flower using HTML Code: &#9880;</p>
<p id="point">Flower using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Flower 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 flower symbol (⚘) in nature and decorative context:

Garden heading ⚘ Spring Garden Guide
List bullet ⚘ Plant roses in full sun
vs floral heart flower ⚘   vs   heart ❦
Large glyph
Numeric refs &#x2698; &#9880; \2698

🧠 How It Works

1

Hexadecimal Code

&#x2698; uses the Unicode hexadecimal value 2698 to display the Flower symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2698 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+2698 is in Miscellaneous Symbols. No named HTML entity—use numeric codes in markup.

Use Cases

The Flower symbol (⚘) is commonly used in:

🌸 Floral design

Floral accents in headers, dividers, and decorative layouts.

🌱 Gardening & nature

Gardening sites, nature blogs, plant guides, and outdoor content.

🎉 Events

Weddings, parties, and event pages with floral or botanical themes.

🎁 Gift & lifestyle

Gift guides, bouquets, and lifestyle content with a natural tone.

📝 Blogs & social

Decorate posts, captions, and articles with a flower icon.

📋 List bullets

Custom bullets for tips, features, or nature-related items.

💡 Best Practices

Do

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

Don’t

  • Confuse ⚘ (flower) with ❦ (floral heart) or 🌼 (blossom emoji)
  • Expect a named entity—none exists for U+2698
  • Put CSS escape \2698 in HTML text nodes
  • Rely on the glyph alone without accessible text when it conveys structure
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references plus CSS render ⚘

&#x2698; &#9880;
2

For CSS stylesheets, use the escape in the content property

\2698
3

Unicode U+2698 — FLOWER (white flower)

4

Miscellaneous Symbols block (U+2600–U+26FF)

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x2698; (hex), &#9880; (decimal), or \2698 in CSS content. There is no named entity.
U+2698 (FLOWER). Miscellaneous Symbols block (U+2600–U+26FF). Hex 2698, decimal 9880. Also known as the white flower or floral symbol.
In decorative and floral design, gardening and nature content, events and invitations, gift and lifestyle pages, blogs and social content, list bullets and icons, and headers or section dividers.
HTML references (&#9880; or &#x2698;) go in markup. The CSS escape \2698 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 Miscellaneous Symbols block like U+2698 use numeric codes (hexadecimal or decimal). This is standard practice for such symbols in HTML.

Explore More HTML Entities!

Discover 1500+ HTML character references — flowers, nature symbols, and decorative glyphs.

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