HTML Entity for Eight Petalled Outlined Black Florette (❁)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2741

What Is Eight Petalled Outlined Black Florette?

Eight petalled outlined black florette (❁) is the Unicode character at U+2741 in Dingbats. Official name: EIGHT PETALLED OUTLINED BLACK FLORETTE. It is a decorative eight-petal flower ornament — useful for bullets and floral UI accents.

Remember
Character     ❁
Unicode       U+2741
Hex entity    ❁
Decimal       ❁
CSS escape    \2741
Named entity  (none)
Not the same  ✿ (black) · ❀ (white) · ✴ (8-point star)

Prefer ❁ or ❁ in HTML (no named form). You can also type ❁ in a UTF-8 document.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNone—
Hex entity❁HTML markup (preferred)
Decimal entity❁HTML markup
Direct character❁HTML text (UTF-8)
CSS escape\2741Stylesheet content
Black florette (related)✿ (✿, U+273F)Solid black — not outlined

When to Use Which

SituationUse
Eight-petalled outlined black florette❁ or type ❁
Black / white floretteU+273F · U+2740
Six-petalled floretteU+273E (✾)
Eight-pointed starU+2734 (✴) — star, not flower
Generated text via ::before / ::aftercontent: "\2741"

Live Preview

Eight petalled outlined black florette rendered alone, as a bullet, and compared with related ornaments.

Glyph ❁
Large glyph ❁
Bullet ❁ Item one
Compared ❁   ✿   ❀   ✾   ✴
With entities Hex: ❁ | Decimal: ❁

Complete HTML Example

One page that shows Eight Petalled Outlined Black Florette with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to display ❁ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Eight Petalled Outlined Black Florette (U+2741) in HTML</title>
  <style>
    #point::after {
      content: "\2741";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x2741;</p>
  <p>Built with Decimal: &#10049;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ❁</p>
  <p>Bullet: ❁ Item one</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: &#x2741; inserts code point U+2741 → ❁.

2. Decimal: same code point as 10049 → &#10049;. Same visual as hex.

3. CSS: use \2741 in content (not an HTML entity). #point::after appends ❁.

4. Typed: paste ❁ in a UTF-8 document, or use it as a bullet like ❁ Item one.

Pitfalls & Tips

Common mistakes when working with Eight Petalled Outlined Black Florette.

Name

No named entity

There is no HTML5 named entity for U+2741. Use &#x2741; or &#10049;.

✿

Not solid black florette

U+273F is a solid black florette. U+2741 is the outlined eight-petalled form.

✴

Not an eight-pointed star

U+2734 is a star. This character is a flower-style florette.

CSS vs HTML

Do not mix escapes

\2741 belongs in CSS strings. &#x2741; / &#10049; belong in HTML.

Fonts

Dingbats font coverage

Some fonts omit Dingbats florettes. Prefer a font with solid Dingbats coverage.

a11y

Add accessible text

A lone ornamental glyph can be unclear to screen readers. Pair it with visible text or mark decorative uses with aria-hidden="true".

Semicolon

End references

Always finish numeric entities with ; — write &#x2741;, not &#x2741.

Browser Support

Eight petalled outlined black florette (U+2741) and its entity forms (&#x2741;, &#10049;, CSS \\2741) are supported in all mainstream browsers. Visible glyphs depend on Dingbats font coverage.

✓ Universal support

Eight Petalled Outlined Black Florette (&#x2741;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2741 / entities Full support

Bottom line: Prefer &#x2741; in HTML (no named form). Use &#10049; when decimal form is required, and \\2741 only inside CSS content.

Key Takeaways

  • Unicode: eight petalled outlined black florette is U+2741 (decimal 10049) — glyph ❁.
  • HTML: no named entity — use &#x2741; / &#10049; / type ❁.
  • CSS: use \2741 inside content for generated text.
  • Shape: outlined florette ≠ solid ✿ ≠ eight-point star ✴.

One line: U+2741 → &#x2741; / &#10049; / CSS \2741.

Frequently Asked Questions

Use &#x2741; (hex), &#10049; (decimal), type ❁ directly in UTF-8, or the CSS escape \2741 in content. There is no named HTML entity for U+2741.
U+2741 (EIGHT PETALLED OUTLINED BLACK FLORETTE). Hex 2741, decimal 10049. It belongs to the Dingbats block (U+2700–U+27BF).
No. Use numeric forms &#10049; or &#x2741;. Related florettes such as U+273F (black) and U+2740 (white) also have no named HTML entities.
Use it for decorative bullets, floral ornaments, and UI accents. Prefer U+273F for a solid black florette, and U+2740 for a white florette.
HTML entities (&#10049; or &#x2741;) go in markup. The CSS escape \2741 goes in stylesheet strings (usually content on ::before/::after).
No. U+2741 is ❁ (eight-petalled outlined black florette). U+273F is ✿ (black florette). U+2734 is ✴ (eight-pointed black star).

Did you know?

Eight petalled outlined black florette is Unicode U+2741 (decimal 10049) — glyph ❁ (EIGHT PETALLED OUTLINED BLACK FLORETTE) in Dingbats. There is no HTML5 named entity; use &#x2741; or &#10049;. Nearby florettes include U+273F (✿, black), U+2740 (❀, white), and U+273E (✾, six-petalled).

Next: Eight Pointed Black Star

Learn the HTML entity for eight pointed black star (U+2734).

Eight Pointed Black Star tutorial →

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