Helmet With White Cross

Shortcodes

Copy useful codes for helmet with white cross symbol ⛑ to use in websites, apps, blogs, and docs.

Unicode
U+26D1
HTML Code
⛑
HEX Code
⛑
CSS Code
\26D1
JS/JSON
\u26D1
Unix/C/PHP/JAVA
0x26D1
URL-encode
%E2%9B%91

Customize Helmet With White Cross

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

  

How to use Helmet With White Cross Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⛑</span>
HTML Code:
<span>&#9937;</span>
HEX Code:
<span>&#x26D1;</span>

Add with CSS

.helmet-with-white-cross::before {
  content: '\\26D1';
}

Set it in JavaScript

document.querySelector('.helmet-with-white-cross').textContent = '⛑';
copied