Thunderstorm

Shortcodes

Copy useful codes for thunderstorm symbol ☈ to use in websites, apps, blogs, and docs.

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

Customize Thunderstorm

Customize ☈, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Thunderstorm Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>☈</span>
HTML Code:
<span>&#9736;</span>
HEX Code:
<span>&#x2608;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.thunderstorm').textContent = '☈';
copied