HTML Entity for Tight Trifoliate Snowflake (❅)

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

What You'll Learn

How to display the Tight Trifoliate Snowflake symbol (❅) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2745 (TIGHT TRIFOLIATE SNOWFLAKE) in the Dingbats block (U+2700–U+27BF)—a compact decorative snowflake for winter and holiday themes.

Render it with ❅, ❅, or CSS escape \2745. There is no named HTML entity. Do not confuse ❅ with ❄ (SNOWFLAKE, U+2744) or ❆ (HEAVY CHEVRON SNOWFLAKE, U+2746).

⚡ Quick Reference — Tight Trifoliate Snowflake

Unicode U+2745

Dingbats

Hex Code ❅

Hexadecimal reference

HTML Code ❅

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2745
Hex code       ❅
HTML code      ❅
Named entity   (none)
CSS code       \2745
Block          Dingbats (U+2700–U+27BF)
Official name  TIGHT TRIFOLIATE SNOWFLAKE
Related        U+2744; = Snowflake (❄), U+2746; = Heavy Chevron Snowflake (❆)
1

Complete HTML Example

This example demonstrates the Tight Trifoliate Snowflake symbol (❅) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2745";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x2745;</p>
<p>Using HTML Code: &#10053;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Tight Trifoliate Snowflake symbol renders in modern browsers when fonts include Dingbats glyphs:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Tight Trifoliate Snowflake symbol (❅) in seasonal context:

Winter banner ❅ Happy Holidays ❅
Large glyph
Snowflake set snowflake   ❅ tight   ❆ heavy
Numeric refs &#x2745; &#10053; \2745

🧠 How It Works

1

Hexadecimal Code

&#x2745; uses the Unicode hexadecimal value 2745 to display the Tight Trifoliate Snowflake symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2745 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+2745 in the Dingbats block (U+2700–U+27BF). No named entity.

Use Cases

The Tight Trifoliate Snowflake symbol (❅) commonly appears in:

❄️ Winter Themes

Seasonal landing pages and cold-weather content.

🎄 Holiday Sites

Christmas pages, event announcements, and promotions.

🎨 Decorative UI

Logos, icons, and creative winter-themed design.

📝 Seasonal Blogs

Winter posts, newsletters, and event listings.

📱 App Icons

Buttons and UI elements with compact snowflake marks.

🎓 Education

Seasonal science content and weather lessons.

✨ Creative Projects

Portfolios and showcases with winter aesthetics.

💡 Best Practices

Do

  • Use &#x2745; or &#10053; for the snowflake glyph
  • Add aria-label (e.g. “Snowflake”) for decorative icons
  • Pair the symbol with text in seasonal banners
  • Use CSS font-size and color for decorative styling
  • Test rendering across browsers and font stacks

Don’t

  • Confuse ❅ (tight trifoliate) with ❄ (snowflake) or ❆ (heavy chevron)
  • Overuse decorative snowflakes—keep visual balance
  • Put CSS escape \2745 directly in HTML text nodes
  • Expect a named HTML entity for U+2745—use numeric references
  • Use HTML entities in JS (use \u2745 instead)

Key Takeaways

1

Two HTML references both render ❅

&#x2745; &#10053;
2

For CSS stylesheets, use the escape in the content property

\2745
3

Unicode U+2745 — TIGHT TRIFOLIATE SNOWFLAKE

4

No named entity—use numeric references or CSS escape

5

Part of Dingbats (U+2700–U+27BF) for decorative symbols

❓ Frequently Asked Questions

Use &#x2745; (hex), &#10053; (decimal), or \2745 in CSS content. There is no named HTML entity. All three produce ❅.
U+2745 (TIGHT TRIFOLIATE SNOWFLAKE). Dingbats block (U+2700–U+27BF). Hex 2745, decimal 10053.
In winter-themed designs, holiday websites, seasonal content, decorative icons, Christmas pages, winter event listings, and any UI that needs a compact snowflake glyph.
HTML numeric references (&#10053; or &#x2745;) go directly in markup. The CSS escape \2745 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover common ASCII, Latin-1, and select symbols. Characters like ❅ in the Dingbats block use numeric hex or decimal references—standard practice for decorative and symbolic characters.

Explore More HTML Entities!

Discover 1500+ HTML character references — winter icons, symbols, and more.

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