HTML Entity for Snowman (☃)

What You'll Learn
How to display Snowman (☃) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2603 (SNOWMAN) in the Miscellaneous Symbols block (U+2600–U+26FF). It is a decorative winter character for holiday and seasonal content.
Render it with ☃, ☃, or CSS \2603. There is no named HTML entity. Do not confuse ☃ with Snowflake U+2744 (❄), Snowman Without Snow U+26C4 (⛄), or snowman emoji sequences in the Emoji block.
⚡ Quick Reference — Snowman
U+2603Miscellaneous Symbols (U+2600–U+26FF)
☃Hexadecimal reference
☃Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2603
Hex code ☃
HTML code ☃
Named entity (none)
CSS code \2603
Related U+2744 = ❄ (snowflake)
U+26C4 = ⛄ (snowman without snow)
Block Miscellaneous Symbols (U+2600–U+26FF)Complete HTML Example
A simple example showing ☃ using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\2603";
}
</style>
</head>
<body>
<p>Snowman using Hex: ☃ Winter</p>
<p>Snowman using HTML Code: ☃ Holiday</p>
<p id="point">Snowman using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+2603 is supported in modern browsers when fonts include Miscellaneous Symbols glyphs:
👀 Live Preview
See the snowman symbol in seasonal contexts:
🧠 How It Works
Hexadecimal Code
☃ references code point U+2603 using hex digits 2603.
Decimal HTML Code
☃ is the decimal equivalent (9731) for the same character.
CSS Entity
\2603 is the CSS escape for U+2603, used in the content property of pseudo-elements.
Same visual result
All three methods produce ☃. Unicode U+2603 in Miscellaneous Symbols (U+2600–U+26FF). No named entity. Next: Soft Hyphen.
Use Cases
Snowman (☃) commonly appears in:
Seasonal landing pages, cold-weather branding, and winter sales.
Christmas pages, festive banners, and seasonal greetings.
Decorative accents in artistic and themed layouts.
Winter announcements and holiday social media snippets.
Examples showing numeric references for U+2603.
Miscellaneous Symbols and HTML entity reference documentation.
💡 Best Practices
Do
- Use
☃or☃in HTML markup - Pair ☃ with clear seasonal text for accessibility
- Keep hex or decimal style consistent across a document
- Use CSS
content: "\2603"for reusable winter UI accents - Distinguish ☃ from ❄ (snowflake) and ⛄ (snowman without snow)
Don’t
- Write U+02603—the correct notation is U+2603
- Use CSS
\02603with a leading zero unless required—prefer\2603 - Substitute ❄ when a snowflake symbol is intended instead of ☃
- Expect a named HTML entity for U+2603
- Put CSS escape
\2603in HTML text nodes
Key Takeaways
Three ways to render U+2603 in HTML and CSS
☃ ☃For CSS stylesheets, use \2603 in the content property
U+2603 SNOWMAN
No named entity—use numeric references or CSS escape
Previous: Snowflake (❄) Next: Soft Hyphen ()
❓ Frequently Asked Questions
☃ (hex), ☃ (decimal), or \2603 in CSS content. There is no named HTML entity. All three render ☃.U+2603 (SNOWMAN). Miscellaneous Symbols (U+2600–U+26FF). Hex 2603, decimal 9731.☃ or ☃ in HTML, or CSS escape \2603 in stylesheets.☃ or ☃) is used directly in HTML content. CSS entity \2603 is used in stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.Explore More HTML Entities!
Discover 1500+ HTML character references — seasonal symbols, miscellaneous symbols, and more.
8 people found this page helpful
