Umbrella With Rain Drops

Shortcodes

Copy useful codes for umbrella with rain drops symbol ☔ to use in websites, apps, blogs, and docs.

Unicode
U+2614
HTML Code
☔
HEX Code
☔
CSS Code
\2614
JS/JSON
\u2614
Unix/C/PHP/JAVA
0x2614
URL-encode
%E2%98%94

Customize Umbrella With Rain Drops

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

  

How to use Umbrella With Rain Drops Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>☔</span>
HTML Code:
<span>&#9748;</span>
HEX Code:
<span>&#x2614;</span>

Add with CSS

.umbrella-with-rain-drops::before {
  content: '\\2614';
}

Set it in JavaScript

document.querySelector('.umbrella-with-rain-drops').textContent = '☔';
copied