HTML Entity for Atom Symbol ()

Beginner
⏱️ 5 min read
📚 Updated: May 2026
🎯 1 Code Example
Unicode U+269B

What You'll Learn

How to render the atom symbol (, Unicode U+269B, official name ATOM SYMBOL) in HTML. The glyph lives in the Miscellaneous Symbols block and is common in science branding, chemistry education, and periodic-table style interfaces.

There is no standard named HTML entity for U+269B; use ⚛, ⚛, or \269B in CSS content. Pair the icon with the word “atom” or an accessible label where the meaning must be obvious to every reader.

⚡ Quick Reference — Atom Symbol (U+269B)

Unicode U+269B

Miscellaneous Symbols

Hex Code ⚛

Hexadecimal reference

HTML Code ⚛

Decimal reference

Named Entity

None (use numeric refs)

CSS Code \269B

Use in CSS content

Reference Table
Name           Value
────────────   ──────────
Unicode        U+269B
Hex code       ⚛
HTML code      ⚛
Named entity   (none)
CSS code       \269B
1

Complete HTML Example

Hexadecimal, decimal, and CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\269B";
  }
 </style>
</head>
<body>

<p>Atom Symbol using Hexa Decimal: &#x269B;</p>
<p>Atom Symbol using HTML Code: &#9883;</p>
<p id="point">Atom Symbol using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

Numeric references for U+269B are supported in all modern browsers with Unicode fonts that include Miscellaneous Symbols:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

Inline and scale checks (add visible text or aria-label in real UI):

Inline Science Lab · UTF-8 numeric refs
Large glyph
With label Atom (example legend text)
Monospace U+269B = ⚛

🧠 How It Works

1

Hexadecimal code

&#x269B; encodes U+269B with hex digits 269B.

HTML markup
2

Decimal HTML code

&#9883; equals 0x269B in decimal form.

HTML markup
3

CSS entity

\269B is used in CSS content for pseudo-elements or icon rules.

CSS stylesheet
4

No named entity

HTML does not define &atom; or similar for this code point. Always use numeric references or a CSS escape.

HTML markup
=

Same visual result

All methods reference U+269BATOM SYMBOL.

Use Cases

The atom symbol () shows up wherever atomic or scientific imagery is needed without bitmap icons:

🔬 Chemistry & science

Course landing pages, lab sites, and outreach that need a compact atom mark.

📚 Education

STEM glossaries, quizzes, and periodic-table style navigation.

🧪 Periodic UI

Element pickers and reference grids that mix text and symbols.

⚡ Nuclear / atomic themes

Headers and badges where Unicode is lighter than custom SVG.

💻 Apps & dashboards

Science tools, molecule viewers, and settings that label physics modes.

♿ Accessibility

Add visible “Atom” text or aria-label beside the glyph.

🌐 Multilingual

One code point works across languages for the same science icon.

💡 Best Practices

Do

  • Choose hex or decimal and keep it consistent site-wide
  • Verify fonts include Miscellaneous Symbols (U+2600–U+26FF)
  • Use \269B only inside CSS content strings
  • Pair the symbol with plain language on first use
  • Prefer SVG or MathML when you need precise stroke geometry for print

Don’t

  • Assume a named entity exists (it does not for U+269B)
  • Use CSS escapes inside HTML text nodes
  • Rely on the glyph alone for safety-critical labels
  • Confuse the atom symbol with other nuclear-themed dingbats without checking code points

Key Takeaways

1

Two HTML numeric forms render

&#x269B; &#9883;
2

CSS: \269B in content

\269B
3

U+269B = ATOM SYMBOL

4

Miscellaneous Symbols — check font coverage

5

No standard named HTML entity; use numeric references

❓ Frequently Asked Questions

Use &#x269B; (hex), &#9883; (decimal), or \269B in CSS content.
U+269B (decimal 9883). Official name: ATOM SYMBOL.
In science and chemistry content, physics education, periodic-table or element UIs, and atomic-themed branding when a single Unicode glyph is enough.
HTML references belong in markup; \269B belongs in stylesheets. Same character.
No. Use numeric references or a CSS escape.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful