Thunder Cloud And Rain

Shortcodes

Copy useful codes for thunder cloud and rain symbol ⛈ to use in websites, apps, blogs, and docs.

Unicode
U+26C8
HTML Code
⛈
HEX Code
⛈
CSS Code
\26C8
JS/JSON
\u26C8
Unix/C/PHP/JAVA
0x26C8
URL-encode
%E2%9B%88

Customize Thunder Cloud And Rain

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

  

How to use Thunder Cloud And Rain Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⛈</span>
HTML Code:
<span>&#9928;</span>
HEX Code:
<span>&#x26C8;</span>

Add with CSS

.thunder-cloud-and-rain::before {
  content: '\\26C8';
}

Set it in JavaScript

document.querySelector('.thunder-cloud-and-rain').textContent = '⛈';
copied