HTML Entity for Heavy Chevron Snowflake (❆)

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
U+2746Dingbats block
❆Hexadecimal reference
❆Decimal reference
—Use numeric codes only
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 (❅)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2746";
}
</style>
</head>
<body>
<p>Heavy Chevron Snowflake using Hexadecimal: ❆</p>
<p>Heavy Chevron Snowflake using HTML Code: ❆</p>
<p id="point">Heavy Chevron Snowflake using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Heavy Chevron Snowflake (❆) is widely supported in modern browsers when the font includes Dingbats:
👀 Live Preview
Heavy Chevron Snowflake (❆) in context, alongside other Dingbats snowflakes:
🧠 How It Works
Hexadecimal Code
❆ uses the Unicode hexadecimal value 2746 to display the snowflake. The x prefix indicates hexadecimal format.
Decimal HTML Code
❆ uses the decimal Unicode value 10054 to display the same character.
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.
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:
Seasonal headers, holiday landing pages, and winter campaign designs.
Christmas, New Year, and seasonal greeting or promotional content.
Snow or cold-weather indicators, winter conditions, and seasonal icons.
Bullets, dividers, or accent characters in headings and body text.
Event pages, ski resorts, ice skating, and winter activity listings.
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::beforeor::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
\2746in HTML text nodes - Assume every font renders the chevron snowflake identically
Key Takeaways
Two HTML numeric references plus CSS insert U+2746
❆ ❆For CSS, use \2746 in the content property
Unicode U+2746 — HEAVY CHEVRON SNOWFLAKE (❆)
Distinct from U+2744 (❄) and U+2745 (❅)
❓ Frequently Asked Questions
❆ (hex), ❆ (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.❆ or ❆) go in markup. The CSS escape \2746 is used in stylesheets, typically on ::before or ::after. Both produce ❆.❆) or decimal (❆) codes, which is standard for characters in the Dingbats block.Explore More HTML Entities!
Discover 1500+ HTML character references — symbols, math, and more.
8 people found this page helpful
