HTML Entity for Saturn (♄)

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

What Is the Saturn Entity?

Saturn (♄) is the Miscellaneous Symbols character at Unicode U+2644 (SATURN). It is the standard planetary symbol for Saturn in astronomy and astrology.

Remember
Character     ♄
Unicode       U+2644
Hex entity    ♄
Decimal       ♄
Named entity  (none)
CSS escape    \2644
Not the same  ♃ (Jupiter) · ♅ (Uranus) · ♆ (Neptune)

Hex, decimal, CSS, and a typed character all produce the same glyph: ♄. Prefer ♄ when you want an explicit entity. For neighboring planets, see Jupiter and Uranus.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Hex entity♄HTML markup (best entity default)
Decimal entity♄HTML markup
Named entityNoneHTML5 does not define one
CSS escape\2644Stylesheet content
Direct character♄UTF-8 HTML text

When to Use Which

SituationUse
Astronomy / planet lists♄ or ♄
Astrology charts♄ (standard Saturn glyph)
Generated text via ::before / ::aftercontent: "\2644"
JupiterUse U+2643 (♃)
Uranus / NeptuneUse U+2645 / U+2646

Live Preview

Saturn in planet lists, compared with neighboring planetary symbols.

Planet label ♄ Saturn
Large glyph ♄
Hex entity ♄ → ♄
Outer planets ♃  |  ♄  |  ♅  |  ♆
With entities Hex: ♄ | Decimal: ♄

Complete HTML Example

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

Hex + Decimal + CSS

Three ways to produce ♄ in a single document (no named entity).

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Saturn (♄)</title>
  <style>
    #point::after {
      content: "\2644";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x2644;</p>
  <p>Using HTML Code: &#9796;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Planet: &#x2644; Saturn</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+2644 → &#x2644; in HTML. The browser turns it into ♄.

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

3. Named: HTML5 does not define a named entity for this character — use hex or decimal instead.

4. CSS: use \2644 in content (not an HTML entity). #point::after appends that ♄ after the paragraph text.

Pitfalls & Tips

Common mistakes when working with Saturn.

Look-alikes

♄ ≠ ♃ ≠ ♅

U+2644 is Saturn. U+2643 is Jupiter. U+2645 is Uranus — similar planet glyphs, different meanings.

Named

No &…; name

Do not invent a name. Use &#x2644; or &#9796;.

A11y

Pair glyph with text

Write ♄ Saturn (or add aria-label) so the planet name is clear without relying on the glyph alone.

Fonts

Glyph coverage

Most modern fonts include U+2644. Still test on mobile — some legacy fonts omit planetary symbols.

CSS vs HTML

Do not mix escapes

\2644 belongs in CSS. &#x2644; / &#9796; belong in HTML.

Semicolon

End references

Always finish with ; — write &#x2644;, not &#x2644.

Browser Support

Saturn (U+2644) and its entity forms (&#x2644;, &#9796;, CSS \\2644) are supported in all modern browsers. Glyph coverage depends on the font.

✓ Universal encoding

Saturn (&#x2644;)

Encode with hex, decimal, or CSS escape — or type ♄ directly in UTF-8 HTML. No named entity.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes*
U+2644 Full support

Bottom line: Prefer &#x2644; for readable HTML. Use \\2644 only inside CSS content. Do not confuse with Jupiter or Uranus.

Key Takeaways

  • Unicode: this symbol is U+2644 (decimal 9796) — planet Saturn.
  • HTML: prefer &#x2644; — or use &#9796;. No named entity.
  • CSS: use \2644 inside content for generated text.
  • Watch out: not the same as Jupiter (U+2643) or Uranus (U+2645).

One line: U+2644 → &#x2644; / &#9796; / CSS \2644 (no named entity).

Frequently Asked Questions

Use &#x2644; (hex), &#9796; (decimal), or the CSS escape \2644 in the content property. All render ♄ when the font supports Miscellaneous Symbols. There is no named HTML entity.
U+2644 (SATURN). Hex 2644, decimal 9796. It belongs to Miscellaneous Symbols (U+2600–U+26FF). It is the planetary symbol for Saturn.
No. HTML5 does not define a named entity for U+2644. Use numeric references like &#x2644; or &#9796;.
Use it in astronomy guides, astrology charts, planet lists, space education, and scientific notes that need the standard Saturn glyph.
HTML entities (&#9796; or &#x2644;) go in markup. The CSS escape \2644 is used in stylesheets (usually in the content property of ::before/::after). Both render ♄.
U+2644 is Saturn. U+2643 is Jupiter. U+2645 is Uranus. They sit next to each other in Unicode but mean different planets.

Did you know?

Saturn is Unicode U+2644 (decimal 9796) — SATURN, the planetary symbol used in astronomy and astrology. HTML5 has no named entity — use &#x2644; or &#9796;. Do not confuse it with Jupiter (U+2643) or Uranus (U+2645).

Next: Scales

Learn the HTML entity for Scales — next in this sequence.

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