HTML Entity for Lightning (☇)

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

What You'll Learn

How to display the Lightning (☇) symbol in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2607 (LIGHTNING) in the Miscellaneous Symbols block (U+2600–U+26FF).

Render it with ☇, ☇, or CSS escape \2607. There is no named HTML entity. It’s used in weather UI, energy/power themes, alerts, and anywhere you need a compact lightning icon in text.

⚡ Quick Reference — Lightning

Unicode U+2607

Miscellaneous Symbols

Hex Code ☇

Hexadecimal reference

HTML Code ☇

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2607
Hex code       ☇
HTML code      ☇
Named entity   (none)
CSS code       \2607
Meaning        Lightning
Block          Miscellaneous Symbols (U+2600–U+26FF)
1

Complete HTML Example

A simple example showing the Lightning symbol (☇) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2607";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x2607;</p>
<p>Symbol (decimal): &#9735;</p>
<p id="point">Symbol (CSS): </p>
<p>Status: Fast ⚡ — Lightning symbol: ☇</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Lightning symbol (☇) is supported in modern browsers. If it doesn’t render, choose a font that supports Miscellaneous Symbols:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Lightning symbol (☇) in common UI contexts:

Large glyph
WeatherThunderstorm: ☇
AlertWarning ☇ High voltage
Energy themePower mode: ON ☇
Numeric refs&#x2607; &#9735; \2607

🧠 How It Works

1

Hexadecimal Code

&#x2607; uses the Unicode hexadecimal value 2607 to display the symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2607 is used in CSS stylesheets, typically in the content property of pseudo-elements.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+2607 is in Miscellaneous Symbols. There is no named HTML entity.

Use Cases

The Lightning symbol (☇) is commonly used in:

🌦 Weather UI

Thunderstorm indicators in forecasts, dashboards, and widgets.

⚡ Energy themes

Power, electricity, performance, or “boost” style labels.

🔔 Alerts

Warning badges or callouts where a quick lightning icon helps scanning.

🚀 “Fast” indicators

Denote speed or instant actions (“Fast checkout”, “Quick mode”).

🎨 Decorative design

Stylized dividers, headings, or icon-like inline typography.

💻 UI labels

Add character-based icons without external images or SVG.

💡 Best Practices

Do

  • Use numeric references (&#x2607; or &#9735;) in HTML for portability
  • Use \2607 in CSS content when inserting via pseudo-elements
  • Provide text labels where meaning matters (icons alone can be ambiguous)
  • Ensure your font supports Miscellaneous Symbols for consistent rendering
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Use the CSS escape \2607 directly in HTML text nodes
  • Assume every device has a font that renders ☇ identically—test on mobile
  • Rely on the glyph alone for accessibility—icons should be paired with meaning
  • Overuse icon glyphs in long paragraphs (it can reduce readability)
  • Mix different lightning icons across the UI without a reason

Key Takeaways

1

Three references render ☇ (no named entity)

&#x2607; &#9735;
2

For CSS stylesheets, use the escape in the content property

\2607
3

Unicode U+2607 — LIGHTNING

4

Use lightning as a supplement to text, not a replacement for meaning

5

Previous: Light Vertical Bar   Next: HTML Entities

❓ Frequently Asked Questions

Use &#x2607; (hex), &#9735; (decimal), or \2607 in CSS content. All produce ☇. There is no named HTML entity.
U+2607 (LIGHTNING) in Miscellaneous Symbols (U+2600–U+26FF). Hex 2607, decimal 9735. No named HTML entity.
In weather UI, energy/power themes, alerts and notifications, and as a compact inline icon where a lightning glyph improves scanning.
HTML references (&#9735; or &#x2607;) go in markup. The CSS escape \2607 goes in stylesheets. Both render ☇.
Many Unicode symbols in the Miscellaneous Symbols block are not included in the named HTML entity set. Numeric references and CSS escapes are the standard approach.

Explore More HTML Entities!

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