HTML Entity for Saturn (♄)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+2644

What You'll Learn

How to display the Saturn symbol (♄) in HTML using hexadecimal, decimal, and CSS escape methods. The symbol denotes the planet Saturn in astronomy and astrology.

It is U+2644 (SATURN) in the Miscellaneous Symbols block (U+2600–U+26FF). Use ♄, ♄, or CSS \2644. There is no named HTML entity. Do not confuse ♄ with U+2643 (♃, Jupiter) or U+2645 (♅, Uranus).

⚡ Quick Reference — Saturn Symbol

Unicode U+2644

Miscellaneous Symbols

Hex Code ♄

Hexadecimal reference

HTML Code ♄

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2644
Hex code       ♄
HTML code      ♄
Named entity   (none)
CSS code       \2644
Meaning        Planet Saturn (♄)
Related        U+2643 = Jupiter (♃)
               U+2645 = Uranus (♅)
               U+2646 = Neptune (♆)
1

Complete HTML Example

This example shows the Saturn symbol (U+2644) using hexadecimal code, decimal HTML code, and a CSS content escape. This character has no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2644";
  }
 </style>
</head>
<body>
<p>Saturn using Hexadecimal: &#x2644;</p>
<p>Saturn using Decimal: &#9796;</p>
<p id="point">Saturn using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Saturn symbol (♄) is widely supported when fonts include Miscellaneous Symbols (U+2600–U+26FF):

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

👀 Live Preview

See the Saturn symbol (♄) in astronomy and astrology contexts:

Planet ♄ Saturn
Solar system ♃ Jupiter ♄ Saturn ♅ Uranus ♆ Neptune
Large glyph
Named entity (none) — use numeric codes
Numeric refs &#x2644; &#9796; \2644

🧠 How It Works

1

Hexadecimal Code

&#x2644; uses the Unicode hexadecimal value 2644 to display the Saturn symbol (♄).

HTML markup
2

Decimal HTML Code

&#9796; uses the decimal Unicode value 9796 to display the same character.

HTML markup
3

CSS Entity

\2644 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+2644 in the Miscellaneous Symbols block (U+2600–U+26FF). No named entity.

Use Cases

The Saturn symbol (♄) commonly appears in:

🚀 Astronomy

Space exploration pages, planet guides, and observatory sites.

★ Astrology

Horoscopes, birth charts, and zodiac/planet reference content.

📚 Education

Textbooks, lesson plans, and solar system learning materials.

📄 Science docs

Research papers and documentation referencing Saturn.

🌌 Space themes

Cosmic UI designs, portfolios, and themed landing pages.

🌐 Symbol guides

Unicode and HTML entity reference pages for planet symbols.

💡 Best Practices

Do

  • Use &#x2644; or &#9796; in HTML (no named entity)
  • Add aria-label="Saturn" when the symbol stands alone for accessibility
  • Use CSS content for reusable planet icon components
  • Declare UTF-8 with <meta charset="utf-8">
  • Test fonts on mobile and desktop for clear ♄ rendering

Don’t

  • Confuse ♄ (Saturn) with ♃ (Jupiter) or ♅ (Uranus)
  • Expect a named HTML entity for U+2644
  • Put CSS escape \2644 in HTML text nodes
  • Substitute emoji or images when the standard planet symbol is required
  • Assume every legacy font includes U+2644

Key Takeaways

1

Two HTML numeric references plus CSS insert ♄

&#x2644; &#9796;
2

For CSS, use \2644 in the content property

3

Unicode U+2644 — SATURN (planet symbol)

4

No named entity—use hex or decimal

5

Part of the planetary symbol set (♃ ♄ ♅ ♆)

❓ Frequently Asked Questions

Use &#x2644; (hex), &#9796; (decimal), or \2644 in CSS content. There is no named HTML entity. All methods render ♄ when the font supports U+2644.
U+2644 (SATURN). Miscellaneous Symbols block (U+2600–U+26FF). Hex 2644, decimal 9796. Used in astronomy and astrology for the planet Saturn.
In astronomy and space content, astrology and horoscope sites, educational material about planets, planet reference lists, scientific documentation, and space-themed designs.
HTML references (&#9796; or &#x2644;) go in markup. The CSS escape \2644 is used in stylesheets, typically on ::before or ::after. Both render ♄.
Named entities cover common characters; Miscellaneous Symbols like U+2644 use numeric hex or decimal codes or CSS escapes. That is standard for planet and astronomical symbols.

Explore More HTML Entities!

Discover 1500+ HTML character references — planet symbols, math, science, 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