HTML Entity for Astronomical Symbol Uranus (⛢)

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

What You'll Learn

How to render the astronomical symbol for Uranus (, Unicode U+26E2) in HTML. This glyph is in the Miscellaneous Symbols block and is the modern-style planet mark used in many astronomy and astrology contexts.

There is no standard named HTML entity for U+26E2; use ⛢, ⛢, or \26E2 in CSS content. Some older texts use the sign (U+2645) for Uranus; that is a different character—pick one convention per project.

⚡ Quick Reference — Uranus (U+26E2)

Unicode U+26E2

Miscellaneous Symbols

Hex Code ⛢

Hexadecimal reference

HTML Code ⛢

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+26E2
Hex code       ⛢
HTML code      ⛢
Named entity   (none)
CSS code       \26E2
1

Complete HTML Example

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

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

<p>Astronomical Symbol Uranus using Hexa Decimal: &#x26E2;</p>
<p>Astronomical Symbol Uranus using HTML Code: &#9954;</p>
<p id="point">Astronomical Symbol Uranus using CSS Entity: </p>

</body>
</html>
Try it Yourself

🌐 Browser Support

Numeric references for U+26E2 are supported in all modern browsers with Unicode fonts:

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

👀 Live Preview

Planet row and scale checks:

Inline Uranus ⛢ · seventh planet from the Sun
Large glyph
Chart-style row ☿ ♀ ♁ ♂ ♃ ♄ ⛢ ♆ ♇
Note on legacy sign Older Uranus mark: ♅ (U+2645) — not the same as ⛢.
Monospace label U+26E2 = ⛢

🧠 How It Works

1

Hexadecimal Code

&#x26E2; encodes U+26E2 with hex digits 26E2.

HTML markup
2

Decimal HTML Code

&#9954; equals 0x26E2 in decimal form.

HTML markup
3

CSS Entity

\26E2 is used in CSS content for pseudo-elements or icon rules.

CSS stylesheet
4

No named entity

HTML does not define &uranus; or similar for this code point. Always use numeric references or CSS escapes.

HTML markup
=

Same visual result

All methods reference . Official Unicode name: ASTRONOMICAL SYMBOL FOR URANUS.

Use Cases

The Uranus symbol (⛢) shows up wherever planets are labeled compactly:

🔭 Astronomy

Solar-system diagrams, ephemeris tables, and outreach articles.

♈ Astrology apps

Natal and transit wheels that adopt the Unicode astronomical set.

📚 Education

Textbooks, MOOCs, and quizzes on the outer planets.

🛰 Space agencies

Mission pages and fact sheets that mirror scientific notation.

📐 Research UI

Databases and dashboards filtering by planet symbol.

♿ Accessibility

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

🌐 Multilingual

One code point works across languages for the same planet mark.

💡 Best Practices

Do

  • Choose hex or decimal and keep it consistent site-wide
  • Verify fonts include Miscellaneous Symbols (U+2600–U+26FF)
  • Document whether you use U+26E2 or legacy U+2645 for Uranus
  • Use \26E2 only inside CSS content or other CSS strings
  • Pair the symbol with the planet name on first use in general copy

Don’t

  • Assume a named entity exists (it does not for U+26E2)
  • Mix U+26E2 and U+2645 in one chart without a style guide
  • Show the glyph alone in critical UI with no textual backup
  • Use CSS escapes inside HTML text nodes
  • Confuse Uranus with Neptune or other planet code points

Key Takeaways

1

Two HTML numeric forms render ⛢

&#x26E2; &#9954;
2

CSS: \26E2 in content

\26E2
3

U+26E2 = ASTRONOMICAL SYMBOL FOR URANUS

4

Legacy astrological Uranus is often U+2645 (♅) — different code point

5

No standard named HTML entity; use numeric references

❓ Frequently Asked Questions

Use &#x26E2; (hex), &#9954; (decimal), or \26E2 in CSS content.
U+26E2 (decimal 9954). An older symbol is U+2645 (♅).
In astronomy or astrology charts, educational planet content, space outreach, and any UI that labels Uranus with its Unicode glyph.
HTML references belong in markup; \26E2 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