HTML Entity for Six Petalled Black and White Florette (✾)

What You'll Learn
How to display the Six Petalled Black and White Florette (✾) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+273E (SIX PETALLED BLACK AND WHITE FLORETTE) in the Dingbats block (U+2700–U+27BF)—a decorative floral ornament used in typography, artistic design, and ornamental web content.
Render it with ✾, ✾, or CSS \273E. There is no named HTML entity. Do not confuse ✾ with Black Florette U+273F (✿) or white florette U+2740 (❀).
⚡ Quick Reference — Six Petalled Black and White Florette
U+273EDingbats
✾Hexadecimal reference
✾Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+273E
Hex code ✾
HTML code ✾
Named entity (none)
CSS code \273E
Official name Six petalled black and white florette
Related U+273F = ✿ (black florette)
U+2740 = ❀ (white florette)
Block Dingbats (U+2700–U+27BF)Complete HTML Example
A simple example showing ✾ using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\273E";
}
</style>
</head>
<body>
<p>Florette (hex): ✾</p>
<p>Florette (decimal): ✾</p>
<p id="point">Florette (CSS): </p>
</body>
</html>🌐 Browser Support
The Six Petalled Black and White Florette (✾) is supported in modern browsers when fonts include Dingbats glyphs:
👀 Live Preview
See the six petalled florette in decorative contexts:
🧠 How It Works
Hexadecimal Code
✾ uses Unicode hexadecimal 273E to display the six petalled black and white florette.
Decimal HTML Code
✾ uses decimal Unicode value 10046 for the same character.
CSS Entity
\273E is used in CSS stylesheets in the content property of pseudo-elements for decorative markers.
Decorative florette result
All three methods produce ✾. Unicode U+273E in Dingbats. No named entity. Next: Six Pointed Black Star.
Use Cases
The Six Petalled Black and White Florette (✾) commonly appears in:
Ornamental accents, floral themes, and artistic web layouts.
Fleurons, section dividers, and decorative text elements.
Garden sites, spring promotions, and nature-themed pages.
Custom list bullets via ::before content.
Wedding, event, and celebration page decorations.
Dingbats and HTML entity reference documentation.
💡 Best Practices
Do
- Use
✾or✾in HTML markup - Add descriptive text or
aria-labelfor accessibility - Use CSS
content: "\273E"for reusable ornamental components - Test rendering across browsers and fonts
- Scale with
font-sizeto fit your layout
Don’t
- Use padded Unicode like U+0273E or CSS
\0273E—correct isU+273Eand\273E - Confuse ✾ with ✿ (black florette) or ❀ (white florette)
- Expect a named HTML entity for U+273E
- Put CSS escape
\273Ein HTML text nodes - Rely on the symbol alone without context for screen readers
Key Takeaways
Three ways to render U+273E in HTML and CSS
✾ ✾For CSS stylesheets, use \273E in the content property
Unicode U+273E — SIX PETALLED BLACK AND WHITE FLORETTE
No named entity—Dingbats decorative character
Previous: Single Right-Pointing Angle Quotation Mark (›) Next: Six Pointed Black Star (✶)
❓ Frequently Asked Questions
✾ (hex), ✾ (decimal), or \273E in CSS content. There is no named HTML entity. All three render ✾.U+273E (SIX PETALLED BLACK AND WHITE FLORETTE). Dingbats (U+2700–U+27BF). Hex 273E, decimal 10046.Explore More HTML Entities!
Discover 1500+ HTML character references — Dingbats, symbols, and more.
8 people found this page helpful
