Radioactive Sign

Shortcodes

Copy useful codes for radioactive sign ☢ to use in websites, apps, blogs, and docs.

Unicode
U+2622
HTML Code
☢
HEX Code
☢
CSS Code
\2622
JS/JSON
\u2622
Unix/C/PHP/JAVA
0x2622
URL-encode
%E2%98%A2

Customize Radioactive Sign

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

  

How to use Radioactive Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>☢</span>
HTML Code:
<span>&#9762;</span>
HEX Code:
<span>&#x2622;</span>

Add with CSS

.radioactive-sign::before {
  content: '\\2622';
}

Set it in JavaScript

document.querySelector('.radioactive-sign').textContent = '☢';
copied