Thunderstorm

Shortcodes

Copy and paste codes for Thunderstorm symbol ☈ to use in your websites, apps, blogs, and more.

Unicode
U+2608
HTML Code
☈
HEX Code
☈
CSS Code
\2608
JS/JSON
\u2608
Unix/C/PHP/JAVA
0x2608
URL-encode
%E2%98%88
copied

Customize Thunderstorm Symbol

Customize ☈ symbol as you like and download Thunderstorm as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Thunderstorm symbol in HTML, CSS, and JS?

Insert ☈ Thunderstorm using HTML

1. Copy-paste Thunderstorm directly:
<span>☈</span>
2. HTML Decimal Code:
<span>&#9736;</span>
3. Hexadecimal Code:
<span>&#x2608;</span>
Preview:

Add Thunderstorm symbol with CSS

.thunderstorm::before {
    content: '\\2608';
}
Preview: Thunderstorm

Thunderstorm JavaScript Code

1. Direct Symbol:
document.querySelector('.thunderstorm').textContent = '☈';
2. Unicode Escape for ☈:
document.querySelector('.thunderstorm').textContent = '\u2608';
Preview: