HTML Entity for Tight Trifoliate Snowflake (❅)

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

What Is Tight Trifoliate Snowflake?

Tight trifoliate snowflake (❅) is the Unicode character at U+2745 in Dingbats. Official name: TIGHT TRIFOLIATE SNOWFLAKE. It is used for winter themes, holiday pages, and decorative seasonal icons.

Remember
Character     ❅
Unicode       U+2745
Hex entity    ❅
Decimal       ❅
CSS escape    \2745
Named entity  (none)
Not the same  ❄ · ❆

Prefer ❅ or ❅ in HTML markup. You can also type ❅ in UTF-8. There is no named entity.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character❅HTML text (UTF-8)
Hex entity❅HTML markup (preferred)
Decimal entity❅HTML markup
CSS escape\2745Stylesheet content
Named entity—Not defined in HTML5
Snowflake (related)❄ (❄, U+2744)Classic six-arm snowflake

When to Use Which

SituationUse
Tight trifoliate snowflake❅ or ❅
Classic snowflake❄ / ❄
Heavy chevron snowflake❆ / ❆
Looking for a named formDoes not exist — use numeric form
Generated text via ::before / ::aftercontent: "\2745"

Live Preview

Tight trifoliate snowflake rendered next to related snowflake marks.

Example Winter sale ❅
Large glyph ❅
Compared ❅   ❄   ❆
With entities Hex: ❅ | Decimal: ❅

Complete HTML Example

One page that shows Tight Trifoliate Snowflake with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce ❅, plus a short seasonal label.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Tight Trifoliate Snowflake (❅) in HTML</title>
  <style>
    #point::after {
      content: "\2745";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x2745;</p>
  <p>Using HTML Code: &#10053;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: ❅</p>
  <p>Example: Winter sale ❅</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+2745 → &#x2745; in HTML. The browser turns it into ❅.

2. Decimal: same code point as 10053 → &#10053;. Same result as hex.

3. CSS: use \2745 in content (not an HTML entity). #point::after appends that ❅ after the paragraph text.

4. Typed / example: paste ❅ in UTF-8, or write Winter sale ❅ for a short seasonal label.

Pitfalls & Tips

Common mistakes when working with Tight Trifoliate Snowflake.

Named?

No named entity

HTML5 does not define a named entity for U+2745. Use &#x2745; or &#10053;.

❄

Not the classic snowflake

U+2744 (❄) is the more common snowflake. Use U+2745 when you specifically need the tight trifoliate design.

❆

Not heavy chevron

U+2746 (❆) is heavy chevron snowflake — a different Dingbat glyph.

Fonts

Dingbat font coverage

Some UI fonts omit less-common Dingbats. Prefer a font that covers this block for display.

CSS vs HTML

Do not mix escapes

\2745 belongs in CSS strings. &#x2745; / &#10053; belong in HTML.

Semicolon

End numeric references

Always finish with ; — write &#10053;, not &#10053.

Browser Support

Tight trifoliate snowflake (U+2745) and its entity forms (&#x2745;, &#10053;, CSS \\2745) are supported in all mainstream browsers. Visible glyphs depend on Dingbats font coverage.

✓ Universal support

Tight Trifoliate Snowflake (&#x2745;)

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+2745 / entities Full support

Bottom line: Prefer &#x2745; or &#10053; in HTML. Use \\2745 only inside CSS content. There is no named entity.

Key Takeaways

  • Unicode: this mark is U+2745 (decimal 10053) — glyph ❅.
  • HTML: use &#x2745; or &#10053; — no named entity; typing ❅ also works.
  • CSS: use \2745 inside content for generated text.
  • Meaning: ❅ = tight trifoliate snowflake — not ❄, not ❆.

One line: U+2745 → &#x2745; / &#10053; / CSS \2745.

Frequently Asked Questions

Use &#x2745; (hex), &#10053; (decimal), type ❅ directly in UTF-8, or the CSS escape \2745 in content. There is no named HTML entity for U+2745.
U+2745 (TIGHT TRIFOLIATE SNOWFLAKE). Hex 2745, decimal 10053. It belongs to Dingbats (U+2700–U+27BF).
No. HTML5 does not define a named entity for this character. Use numeric forms &#10053; or &#x2745;.
Use it for winter themes, holiday pages, and decorative seasonal icons when a Unicode glyph is enough. Prefer an SVG or icon font when you need consistent cross-platform UI art.
HTML entities (&#10053; or &#x2745;) go in markup. The CSS escape \2745 goes in stylesheet strings (usually content on ::before/::after).
No. ❅ is tight trifoliate snowflake (U+2745). ❄ is snowflake (U+2744). ❆ is heavy chevron snowflake (U+2746). They are adjacent Dingbats with different designs.

Did you know?

Tight trifoliate snowflake (❅) is Unicode U+2745 (decimal 10053) — TIGHT TRIFOLIATE SNOWFLAKE in Dingbats. HTML5 has no named entity — use &#x2745; or &#10053;. Do not confuse it with snowflake (U+2744, ❄) or heavy chevron snowflake (U+2746, ❆).

Next: Tilde

Learn the HTML entity for tilde (∼).

Continue 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