Umbrella

Shortcodes

Copy useful codes for umbrella symbol ☂ to use in websites, apps, blogs, and docs.

Unicode
U+2602
HTML Code
☂
HEX Code
☂
CSS Code
\2602
JS/JSON
\u2602
Unix/C/PHP/JAVA
0x2602
URL-encode
%E2%98%82

Customize Umbrella

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

  

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

Insert in HTML

1. Direct symbol:
<span>☂</span>
HTML Code:
<span>&#9730;</span>
HEX Code:
<span>&#x2602;</span>

Add with CSS

.umbrella::before {
  content: '\\2602';
}

Set it in JavaScript

document.querySelector('.umbrella').textContent = '☂';
copied