Biohazard Sign

Shortcodes

Copy and paste codes for Biohazard Sign symbol ☣ to use in your websites, apps, blogs, and more.

Unicode
U+2623
HTML Code
☣
HEX Code
☣
CSS Code
\2623
JS/JSON
\u2623
Unix/C/PHP/JAVA
0x2623
URL-encode
%E2%98%A3
copied

Customize Biohazard Sign Symbol

Customize ☣ symbol as you like and download Biohazard Sign as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Biohazard Sign symbol in HTML, CSS, and JS?

Insert ☣ Biohazard Sign using HTML

1. Copy-paste Biohazard Sign directly:
<span>☣</span>
2. HTML Decimal Code:
<span>&#9763;</span>
3. Hexadecimal Code:
<span>&#x2623;</span>
Preview:

Add Biohazard Sign symbol with CSS

.biohazard-sign::before {
    content: '\\2623';
}
Preview: Biohazard Sign

Biohazard Sign JavaScript Code

1. Direct Symbol:
document.querySelector('.biohazard-sign').textContent = '☣';
2. Unicode Escape for ☣:
document.querySelector('.biohazard-sign').textContent = '\u2623';
Preview: