HTML Entity for Flower Punctuation Mark (⁕)

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

What You'll Learn

How to display the Flower punctuation mark (⁕) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2055 (FLOWER PUNCTUATION MARK) in the General Punctuation block (U+2000–U+206F)—a decorative punctuation symbol used in typography, lists, and ornamental design.

Render it with ⁕, ⁕, or CSS escape \2055. There is no named HTML entity. Do not confuse ⁕ with the Flower symbol (⚘, U+2698, Miscellaneous Symbols) or the five dot punctuation mark (⁙, U+2059).

⚡ Quick Reference — Flower Punctuation Mark

Unicode U+2055

General Punctuation

Hex Code ⁕

Hexadecimal reference

HTML Code ⁕

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2055
Hex code       ⁕
HTML code      ⁕
Named entity   (none)
CSS code       \2055
Meaning        Decorative / ornamental flower punctuation
Related        U+2698 = Flower symbol (⚘); U+2059 = Five dot punctuation (⁙)
1

Complete HTML Example

This example demonstrates the Flower punctuation mark (⁕) 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: "\2055";
  }
 </style>
</head>
<body>
<p>Flower Punctuation Mark using Hexadecimal: &#x2055;</p>
<p>Flower Punctuation Mark using HTML Code: &#8277;</p>
<p id="point">Flower Punctuation Mark using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Flower punctuation mark 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 punctuation mark (⁕) as a decorative separator and compared with related characters:

Section divider Chapter I ⁕ Chapter II
List marker ⁕ Spring blooms ⁕ Summer roses
vs flower symbol punctuation ⁕   vs   flower ⚘
Large glyph
Numeric refs &#x2055; &#8277; \2055

🧠 How It Works

1

Hexadecimal Code

&#x2055; uses the Unicode hexadecimal value 2055 to display the Flower punctuation mark. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2055 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+2055 is in General Punctuation. No named HTML entity—use numeric codes in markup.

Use Cases

The Flower punctuation mark (⁕) is commonly used in:

✨ Decorative typography

Distinctive punctuation or ornamental marks in headings, quotes, or body text.

📋 List bullets

Custom bullets or list markers for floral, botanical, or decorative lists.

🌸 Ornamental headers

Section dividers, chapter markers, or repeated motifs in web and print design.

🌱 Botanical content

Gardening sites, nature articles, and content with a floral or natural theme.

🎨 Invitations & design

Wedding invites, event flyers, and design work with decorative punctuation.

💻 CSS accents

::before / ::after content for unique bullets, dividers, or repeated accents.

💡 Best Practices

Do

  • Add aria-label="flower punctuation" when the symbol carries meaning
  • Use the CSS escape in ::before / ::after for bullets and dividers
  • Ensure fonts support General Punctuation (U+2055)
  • Use &#x2055; or &#8277; consistently within a project
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⁕ (flower punctuation) with ⚘ (flower symbol) or ⁙ (five dot punctuation)
  • Expect a named entity—none exists for U+2055
  • Put CSS escape \2055 in HTML text nodes
  • Use 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 ⁕

&#x2055; &#8277;
2

For CSS stylesheets, use the escape in the content property

\2055
3

Unicode U+2055 — FLOWER PUNCTUATION MARK

4

General Punctuation block (U+2000–U+206F)

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x2055; (hex), &#8277; (decimal), or \2055 in CSS content. There is no named entity.
U+2055 (FLOWER PUNCTUATION MARK). General Punctuation block (U+2000–U+206F). Hex 2055, decimal 8277. Used as a decorative or ornamental punctuation mark.
In decorative typography, list bullets and markers, ornamental headers, floral or botanical-themed content, invitations and design work, and anywhere a distinctive punctuation or divider is needed.
HTML references (&#8277; or &#x2055;) go in markup. The CSS escape \2055 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. Characters in the General Punctuation block like U+2055 use numeric codes (hexadecimal or decimal). This is standard practice for such symbols in HTML.

Explore More HTML Entities!

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