HTML Entity for Thunderstorm (☈)

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

What You'll Learn

How to display the Thunderstorm symbol (☈) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2608 (THUNDERSTORM) in the Miscellaneous Symbols block (U+2600–U+26FF)—a weather symbol for thunderstorms and lightning storms.

Render it with ☈, ☈, or CSS escape \2608. There is no named HTML entity. Do not confuse ☈ with ☁ (CLOUD, U+2601) or ⛈ (THUNDER CLOUD WITH RAIN, U+26C8).

⚡ Quick Reference — Thunderstorm

Unicode U+2608

Miscellaneous Symbols

Hex Code ☈

Hexadecimal reference

HTML Code ☈

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2608
Hex code       ☈
HTML code      ☈
Named entity   (none)
CSS code       \2608
Block          Miscellaneous Symbols (U+2600–U+26FF)
Official name  THUNDERSTORM
Related        U+2600 = Black Sun (☀), U+2744; = Snowflake (❄)
1

Complete HTML Example

This example demonstrates the Thunderstorm symbol (☈) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

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

🌐 Browser Support

The Thunderstorm symbol renders in modern browsers when fonts include Miscellaneous Symbols glyphs:

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

👀 Live Preview

See the Thunderstorm symbol (☈) in weather context:

Forecast ☈ Thunderstorm — 72°F
Large glyph
Weather set sun   ☁ cloud   ☈ storm
Numeric refs &#x2608; &#9736; \2608

🧠 How It Works

1

Hexadecimal Code

&#x2608; uses the Unicode hexadecimal value 2608 to display the Thunderstorm symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2608 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+2608 in the Miscellaneous Symbols block (U+2600–U+26FF). No named entity.

Use Cases

The Thunderstorm symbol (☈) commonly appears in:

🌤 Weather Apps

Mobile widgets and forecast apps for storm conditions.

🌐 Meteorology Sites

Climate data displays and weather information systems.

📊 Forecast Dashboards

Weather maps and alert systems for severe weather.

📱 Weather Widgets

Desktop apps and browser extensions showing conditions.

🎓 Education

Meteorology tutorials and weather science content.

📰 News & Media

Weather reports and news content about storms.

⚠️ Alert UI

Severe weather warnings and notification interfaces.

💡 Best Practices

Do

  • Use &#x2608; or &#9736; for the thunderstorm glyph
  • Add aria-label (e.g. “Thunderstorm”) for accessibility
  • Pair the symbol with text labels in forecast UI
  • Use CSS font-size to scale in weather widgets
  • Test rendering across browsers and font stacks

Don’t

  • Confuse ☈ (thunderstorm) with ☁ (cloud) or ⛈ (thunder cloud with rain)
  • Rely on the symbol alone without accessible text in alerts
  • Put CSS escape \2608 directly in HTML text nodes
  • Expect a named HTML entity for U+2608—use numeric references
  • Use HTML entities in JS (use \u2608 instead)

Key Takeaways

1

Two HTML references both render ☈

&#x2608; &#9736;
2

For CSS stylesheets, use the escape in the content property

\2608
3

Unicode U+2608 — THUNDERSTORM

4

No named entity—use numeric references or CSS escape

5

Part of Miscellaneous Symbols (U+2600–U+26FF) for weather icons

❓ Frequently Asked Questions

Use &#x2608; (hex), &#9736; (decimal), or \2608 in CSS content. There is no named HTML entity. All three produce ☈.
U+2608 (THUNDERSTORM). Miscellaneous Symbols block (U+2600–U+26FF). Hex 2608, decimal 9736.
In weather apps, meteorological websites, forecast dashboards, weather widgets, climate data displays, and any content representing thunderstorms or severe weather conditions.
HTML numeric references (&#9736; or &#x2608;) go directly in markup. The CSS escape \2608 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 Miscellaneous Symbols block use numeric hex or decimal references—standard practice for weather and symbolic characters.

Explore More HTML Entities!

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