HTML Entity for Astronomical Symbol Uranus (⛢)

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)
U+26E2Miscellaneous Symbols
⛢Hexadecimal reference
⛢Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+26E2
Hex code ⛢
HTML code ⛢
Named entity (none)
CSS code \26E2Complete HTML Example
Hexadecimal, decimal, and CSS content escape (no named entity):
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\26E2";
}
</style>
</head>
<body>
<p>Astronomical Symbol Uranus using Hexa Decimal: ⛢</p>
<p>Astronomical Symbol Uranus using HTML Code: ⛢</p>
<p id="point">Astronomical Symbol Uranus using CSS Entity: </p>
</body>
</html>🌐 Browser Support
Numeric references for U+26E2 are supported in all modern browsers with Unicode fonts:
👀 Live Preview
Planet row and scale checks:
🧠 How It Works
Hexadecimal Code
⛢ encodes U+26E2 with hex digits 26E2.
Decimal HTML Code
⛢ equals 0x26E2 in decimal form.
CSS Entity
\26E2 is used in CSS content for pseudo-elements or icon rules.
No named entity
HTML does not define &uranus; or similar for this code point. Always use numeric references or CSS escapes.
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:
Solar-system diagrams, ephemeris tables, and outreach articles.
Natal and transit wheels that adopt the Unicode astronomical set.
Textbooks, MOOCs, and quizzes on the outer planets.
Mission pages and fact sheets that mirror scientific notation.
Databases and dashboards filtering by planet symbol.
Add visible “Uranus” text or aria-label beside the glyph.
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
\26E2only inside CSScontentor 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
Two HTML numeric forms render ⛢
⛢ ⛢CSS: \26E2 in content
\26E2U+26E2 = ASTRONOMICAL SYMBOL FOR URANUS
Legacy astrological Uranus is often U+2645 (♅) — different code point
No standard named HTML entity; use numeric references
❓ Frequently Asked Questions
⛢ (hex), ⛢ (decimal), or \26E2 in CSS content.U+26E2 (decimal 9954). An older symbol is U+2645 (♅).\26E2 belongs in stylesheets. Same character.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
