HTML Entity for Radioactive Sign (☢)

What You'll Learn
How to display the Radioactive sign (☢) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2622 (RADIOACTIVE SIGN) in the Miscellaneous Symbols block (U+2600–U+26FF)—the internationally recognized trefoil symbol for ionizing radiation and nuclear hazards.
Render it with ☢, ☢, or CSS escape \2622. There is no named HTML entity. Do not confuse ☢ with U+2623 (☣, biohazard sign), U+262E (☮, peace symbol), or other warning glyphs in the same Unicode block.
⚡ Quick Reference — Radioactive Sign
U+2622Miscellaneous Symbols (U+2600–U+26FF)
☢Hexadecimal reference
☢Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2622
Hex code ☢
HTML code ☢
Named entity (none)
CSS code \2622
Meaning Radioactive sign (radiation trefoil)
Related U+2623 = biohazard sign (☣)
U+262E = peace symbol (☮)
Block Miscellaneous Symbols (U+2600–U+26FF)Complete HTML Example
A simple example showing ☢ using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\2622";
}
</style>
</head>
<body>
<p>Radioactive sign (hex): ☢</p>
<p>Radioactive sign (decimal): ☢</p>
<p id="point">Radioactive sign (CSS): </p>
</body>
</html>🌐 Browser Support
The Radioactive sign (☢) is widely supported in all modern browsers:
👀 Live Preview
See the Radioactive sign (☢) in safety and warning contexts:
🧠 How It Works
Hexadecimal Code
☢ uses the Unicode hexadecimal value 2622 to display the radioactive trefoil symbol.
Decimal HTML Code
☢ uses the decimal Unicode value 9762 for the same character.
CSS Entity
\2622 is used in CSS stylesheets in the content property of pseudo-elements for warning icons or decorative markers.
Radioactive sign result
All three methods render ☢. Unicode U+2622 in Miscellaneous Symbols. Next: Rams Horn.
Use Cases
The Radioactive sign (☢) is commonly used in:
Radiation hazard labels, restricted-area notices, and caution banners.
Articles on nuclear energy, isotopes, and radiation safety training.
Safety data sheets, regulatory docs, and industrial hazard references.
Radiology pages, lab equipment guides, and diagnostic imaging content.
Physics lessons, chemistry labs, and tutorials on ionizing radiation.
Pair ☢ with visible warning text; add aria-label when used as an icon.
💡 Best Practices
Do
- Use
☢or☢for inline radiation symbols - Include clear warning text alongside the symbol
- Set
<meta charset="utf-8">for reliable rendering - Use the correct symbol—☢ not biohazard ☣
- Pick one numeric style per project for consistency
Don’t
- Confuse ☢ with biohazard ☣ or peace symbol ☮
- Use padded Unicode notation like U+02622—the correct value is
U+2622 - Use CSS escape
\2622in HTML text nodes - Rely on ☢ alone for critical safety messaging without text
- Assume every font renders Miscellaneous Symbols identically—test your typeface
Key Takeaways
Two HTML numeric references plus CSS for U+2622
☢ ☢For CSS stylesheets, use \2622 in the content property
Unicode U+2622 — RADIOACTIVE SIGN in Miscellaneous Symbols
Distinct from biohazard ☣ and peace symbol ☮
Previous: Quotation Mark (") Next: Rams Horn
❓ Frequently Asked Questions
☢ (hex), ☢ (decimal), or \2622 in CSS content. There is no named entity. All three render ☢.U+2622 (RADIOACTIVE SIGN). Miscellaneous Symbols block (U+2600–U+26FF). Hex 2622, decimal 9762.Explore More HTML Entities!
Discover 1500+ HTML character references — warning symbols, punctuation, math operators, and more.
8 people found this page helpful
