HTML Entity for Uranus (♅)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2645

What Is Uranus?

Uranus (♅) is the Unicode character at U+2645 in Miscellaneous Symbols. Official name: URANUS — the standard planetary and astrological glyph for the planet Uranus.

Remember
Character     ♅
Unicode       U+2645
Hex entity    ♅
Decimal       ♅
CSS escape    \2645
Named entity  (none)
Not the same  ♄ · ♆ · ⛢

Prefer ♅ or ♅ in HTML markup. You can also type ♅ in UTF-8. There is no named entity. Pair the glyph with the word “Uranus” so the meaning stays clear.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character♅HTML text (UTF-8)
Hex entity♅HTML markup (preferred)
Decimal entity♅HTML markup
CSS escape\2645Stylesheet content
Named entity—Not defined in HTML5
MeaningPlanet UranusAstronomy / astrology

When to Use Which

SituationUse
Planet Uranus (♅)♅ or ♅
Saturn (♄)♄ (♄)
Neptune (♆)♆ (♆)
Jupiter (♃)♃ (♃)
Herschel / alternate Uranus (⛢)⛢ (⛢, U+26E2)
Generated text via ::before / ::aftercontent: "\2645"

Live Preview

Uranus rendered alone, labeled, and next to neighboring planets.

Large glyph ♅
Labeled Planet: Uranus ♅
Compared ♃  |  ♄  |  ♅  |  ♆
Hint Compare: Jupiter ♃ | Saturn ♄ | Uranus ♅ | Neptune ♆
With entities Hex: ♅ | Decimal: ♅

Complete HTML Example

One page that shows the symbol with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce ♅, plus a short labeled example.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Uranus Symbol (♅)</title>
  <style>
    #point::after {
      content: "\2645";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x2645;</p>
  <p>Using HTML Code: &#9797;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: ♅</p>
  <p>Planet: Uranus ♅</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+2645 → &#x2645; in HTML. The browser turns it into ♅.

2. Decimal: same code point as 9797 → &#9797;. Same result as hex.

3. CSS: use \2645 in content (not an HTML entity). #point::after appends that ♅ after the paragraph text.

4. Typed / label: paste ♅ in UTF-8, and keep the word “Uranus” nearby so the symbol is understandable.

Pitfalls & Tips

Common mistakes when working with U+2645.

Named

No &uranus; name

HTML5 has no named entity for U+2645. Use &#x2645; or &#9797; — do not invent a name.

vs ♄

Not Saturn

♄ is Saturn (U+2644). ♅ is Uranus — neighboring code points, different planets.

vs ♆

Not Neptune

♆ is Neptune (U+2646). Keep planetary lists in the correct Unicode order.

vs ⛢

Alternate Uranus glyph

⛢ (U+26E2) is ASTRONOMICAL SYMBOL FOR URANUS (Herschel “H” style). Prefer U+2645 unless you specifically need the alternate form.

Fonts

Glyph depends on font

Some fonts draw planetary symbols weakly or as a fallback box. Test with fonts that cover Miscellaneous Symbols.

CSS vs HTML

Do not mix escapes

\2645 belongs in CSS strings. &#x2645; / &#9797; belong in HTML.

A11y

Always label the planet

Screen readers may announce a generic “symbol.” Write “Uranus ♅” (or similar) so the meaning is clear.

Browser Support

The Uranus symbol (U+2645) and its entity forms (&#x2645;, &#9797;, CSS \\2645) are supported in all mainstream browsers. Visible planetary glyphs depend on fonts that include Miscellaneous Symbols.

✓ Universal support

Uranus (&#x2645;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2645 Full support

Bottom line: Prefer &#x2645; or &#9797; in HTML. Use \\2645 only inside CSS content. Pair the glyph with the word “Uranus” for clarity.

Key Takeaways

  • Unicode: Uranus is U+2645 (decimal 9797) — glyph ♅.
  • HTML: use &#x2645; or &#9797; — no named entity in HTML5.
  • CSS: use \2645 inside content for generated text.
  • Meaning: ♅ is Uranus — not ♄ (Saturn), not ♆ (Neptune), not ⛢ (alternate).

One line: U+2645 → &#x2645; / &#9797; / CSS \2645.

Frequently Asked Questions

Use &#x2645; (hex), &#9797; (decimal), type ♅ directly in UTF-8, or the CSS escape \2645 in content. There is no named HTML entity for U+2645.
U+2645 (URANUS). Hex 2645, decimal 9797. It belongs to Miscellaneous Symbols (U+2600–U+26FF).
No. HTML5 does not define a named entity for this character. Use numeric forms &#9797; or &#x2645;.
Use it in astronomy, solar-system education, astrology charts, and any content that needs the planetary glyph for Uranus — ideally next to the word Uranus for clarity.
It sits with other planetary glyphs such as Jupiter (♃), Saturn (♄), and Neptune (♆). Each has its own Unicode code point.
HTML entities (&#9797; or &#x2645;) go in markup. The CSS escape \2645 goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Uranus (♅) is Unicode U+2645 (decimal 9797) — official name URANUS in Miscellaneous Symbols (U+2600–U+26FF). HTML5 has no named entity — use &#x2645; or &#9797;. It is the standard planetary/astrological glyph for the planet Uranus. Pair the symbol with the word “Uranus” for clarity, especially for accessibility.

Next: Versicle

Learn the HTML entity for the versicle symbol (U+2123).

Continue tutorial →

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