HTML Entity for Heavy Chevron Snowflake (❆)

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

What You'll Learn

How to display the Heavy Chevron Snowflake symbol (❆) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2746 (HEAVY CHEVRON SNOWFLAKE) in the Dingbats block (U+2700–U+27BF). It is a decorative chevron-style snowflake ideal for winter-themed sites, festive and holiday content, weather interfaces, and typographic accents.

Render it with ❆, ❆, or CSS escape \2746. There is no named HTML entity. Do not confuse ❆ with U+2744 (❄, SNOWFLAKE) or U+2745 (❅, tight trifoliate snowflake); each has a distinct glyph in the Dingbats snowflake series.

⚡ Quick Reference — Heavy Chevron Snowflake

Unicode U+2746

Dingbats block

Hex Code ❆

Hexadecimal reference

HTML Code ❆

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2746
Hex code       ❆
HTML code      ❆
Named entity   (none)
CSS code       \2746
Meaning        Heavy chevron snowflake
Related        U+2744 = snowflake (❄)
               U+2745 = trifoliate (❅)
1

Complete HTML Example

This example demonstrates the Heavy Chevron Snowflake (❆) 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: "\2746";
  }
 </style>
</head>
<body>
<p>Heavy Chevron Snowflake using Hexadecimal: &#x2746;</p>
<p>Heavy Chevron Snowflake using HTML Code: &#10054;</p>
<p id="point">Heavy Chevron Snowflake using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Heavy Chevron Snowflake (❆) is widely supported in modern browsers when the font includes Dingbats:

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

👀 Live Preview

Heavy Chevron Snowflake (❆) in context, alongside other Dingbats snowflakes:

Winter heading ❆ Winter Sale
Weather ❆ Snow likely tonight
Large glyph
Snowflake series ❄ ❅ ❆
Numeric refs &#x2746; &#10054; \2746

🧠 How It Works

1

Hexadecimal Code

&#x2746; uses the Unicode hexadecimal value 2746 to display the snowflake. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2746 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after for winter headings and decorative bullets.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+2746 is in the Dingbats block. Next: Heavy Concave Pointed Black Right Arrow (➨).

Use Cases

The Heavy Chevron Snowflake (❆) is commonly used in:

❆ Winter websites

Seasonal headers, holiday landing pages, and winter campaign designs.

🎄 Festive content

Christmas, New Year, and seasonal greeting or promotional content.

🌨 Weather apps

Snow or cold-weather indicators, winter conditions, and seasonal icons.

✨ Typography

Bullets, dividers, or accent characters in headings and body text.

🛷 Winter sports

Event pages, ski resorts, ice skating, and winter activity listings.

🎨 Design & branding

Snowflake motifs in logos, icons, or brand assets for cold-weather brands.

💡 Best Practices

Do

  • Pair ❆ with text or aria-label (e.g. “Snow”, “Winter theme”) when it conveys meaning
  • Use content: "\2746" on headings via ::before or ::after
  • Declare UTF-8 with <meta charset="utf-8">
  • Test snowflake glyph shape across fonts and platforms
  • Keep one numeric style (hex or decimal) per project
  • Use clear winter or festive context so the symbol is understood

Don’t

  • Rely on ❆ alone for accessibility-critical weather or status info
  • Confuse U+2746 (❆) with U+2744 (❄) or U+2745 (❅)
  • Expect a named HTML entity for U+2746
  • Use CSS \2746 in HTML text nodes
  • Assume every font renders the chevron snowflake identically

Key Takeaways

1

Two HTML numeric references plus CSS insert U+2746

&#x2746; &#10054;
2

For CSS, use \2746 in the content property

3

Unicode U+2746 — HEAVY CHEVRON SNOWFLAKE (❆)

4

Distinct from U+2744 (❄) and U+2745 (❅)

❓ Frequently Asked Questions

Use &#x2746; (hex), &#10054; (decimal), or \2746 in CSS content. There is no named entity. All three methods render the Heavy Chevron Snowflake (❆) correctly.
U+2746 (HEAVY CHEVRON SNOWFLAKE). Dingbats block. Hex 2746, decimal 10054. The symbol (❆) is a decorative chevron-style snowflake widely used for winter and festive themes.
For winter-themed websites and holiday content, festive decorations, weather apps and cold-weather indicators, typographic accents, and any design that needs a distinctive snowflake or winter symbol.
HTML references (&#10054; or &#x2746;) go in markup. The CSS escape \2746 is used in stylesheets, typically on ::before or ::after. Both produce ❆.
Named entities cover common ASCII, Latin-1, and widely used symbols. U+2746 uses numeric hex (&#x2746;) or decimal (&#10054;) codes, which is standard for characters in the Dingbats block.

Explore More HTML Entities!

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