HTML Entity for Biohazard Sign (☣)

What You'll Learn
How to display the Biohazard sign (☣) in HTML and CSS. This character is U+2623 (BIOHAZARD SIGN) in the Miscellaneous Symbols block. It warns of biological hazards (infectious material, regulated medical waste, BSL areas). The design dates to the 1960s and is widely used on signage and labels worldwide.
There is no named HTML entity for U+2623. Use ☣ or ☣ in markup, or \2623 in stylesheet content. For real-world labeling, follow national regulations (for example OSHA/GHS in the United States); a Unicode glyph in HTML is not a substitute for compliant label artwork.
⚡ Quick Reference — Biohazard Sign
U+2623Miscellaneous Symbols
☣Hexadecimal reference
☣Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+2623
Hex code ☣
HTML code ☣
Named entity —
CSS code \2623Complete HTML Example
This example shows the Biohazard sign using hexadecimal and decimal character references, plus a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2623";
}
</style>
</head>
<body>
<p>Biohazard Sign using Hexa Decimal: ☣</p>
<p>Biohazard Sign using HTML Code: ☣</p>
<p id="point">Biohazard Sign using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+2623 is a standard BMP symbol; appearance depends on the font:
👀 Live Preview
Compare the biohazard sign with the radiation warning (different code point):
🧠 How It Works
Hexadecimal Code
☣ references code point U+2623 using hex digits 2623 after the #x prefix.
Decimal HTML Code
☣ is the decimal equivalent (9763) for the same Biohazard sign.
CSS Entity
\2623 is the CSS escape for U+2623, used in the content property of ::before or ::after.
Same visual result
Hex, decimal, and CSS escapes all produce ☣. There is no named HTML entity for U+2623.
Use Cases
The Biohazard sign (☣) is commonly used for:
Intranet pages, door schedules, and training for biosafety levels.
Online safety data sheets and hazard summaries (with required wording, not icon alone).
Sharps and regulated waste messaging on portals and digital signage.
Environmental cleanup and industrial hygiene content.
SOP HTML exports and lab notebooks published to the web.
Science and workplace safety courses that quiz on hazard symbols.
Always add visible text or aria-label (“Biohazard”); the glyph alone is not enough for compliance or screen readers.
💡 Best Practices
Do
- Pair ☣ with high-contrast text (for example black on yellow/orange) when mimicking physical labels
- Use numeric references for stable copy across CMS and email-like HTML contexts
- Verify the font draws a recognizable trefoil; fall back to SVG or raster if brand guidelines require exact geometry
- Keep
\2623inside stylesheets only, not pasted into HTML text nodes - Follow local law and employer policy for hazard communication; the web page is only one channel
Don’t
- Confuse U+2623 (bio) with U+2622 (radiation) or other warning pictograms
- Ship icon-only critical warnings without accessible names or visible hazard class text
- Assume a tiny grey ☣ in body text meets signage legibility rules
- Use HTML entities as a legal substitute for approved label PDFs or supplier marks
- Forget color-blind users: rely on shape and text, not color alone
Key Takeaways
Two numeric references render the same glyph
☣ ☣CSS content escape
\2623U+2623 is BIOHAZARD SIGN; U+2622 is radiation
No &name; entity; plan on hex or decimal in HTML
Combine glyph, color, and words to meet real-world hazard communication expectations
❓ Frequently Asked Questions
☣ (hex), ☣ (decimal), or \2623 in CSS content. There is no named entity; all valid methods render ☣.U+2623 (hex 2623, decimal 9763). Miscellaneous Symbols. Not the same as the radiation sign at U+2622.\2623 escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.☣, ☣, or \2623 in CSS depending on whether you are authoring markup or styles.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
