HTML Entity for Saturn (♄)

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
U+2644Miscellaneous Symbols
♄Hexadecimal reference
♄Decimal reference
—Use numeric codes only
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 (♆)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2644";
}
</style>
</head>
<body>
<p>Saturn using Hexadecimal: ♄</p>
<p>Saturn using Decimal: ♄</p>
<p id="point">Saturn using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Saturn symbol (♄) is widely supported when fonts include Miscellaneous Symbols (U+2600–U+26FF):
👀 Live Preview
See the Saturn symbol (♄) in astronomy and astrology contexts:
🧠 How It Works
Hexadecimal Code
♄ uses the Unicode hexadecimal value 2644 to display the Saturn symbol (♄).
Decimal HTML Code
♄ uses the decimal Unicode value 9796 to display the same character.
CSS Entity
\2644 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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:
Space exploration pages, planet guides, and observatory sites.
Horoscopes, birth charts, and zodiac/planet reference content.
Textbooks, lesson plans, and solar system learning materials.
Research papers and documentation referencing Saturn.
Cosmic UI designs, portfolios, and themed landing pages.
Unicode and HTML entity reference pages for planet symbols.
💡 Best Practices
Do
- Use
♄or♄in HTML (no named entity) - Add
aria-label="Saturn"when the symbol stands alone for accessibility - Use CSS
contentfor 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
\2644in HTML text nodes - Substitute emoji or images when the standard planet symbol is required
- Assume every legacy font includes U+2644
Key Takeaways
Two HTML numeric references plus CSS insert ♄
♄ ♄For CSS, use \2644 in the content property
Unicode U+2644 — SATURN (planet symbol)
No named entity—use hex or decimal
Part of the planetary symbol set (♃ ♄ ♅ ♆)
❓ Frequently Asked Questions
♄ (hex), ♄ (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.♄ or ♄) go in markup. The CSS escape \2644 is used in stylesheets, typically on ::before or ::after. Both render ♄.Explore More HTML Entities!
Discover 1500+ HTML character references — planet symbols, math, science, and more.
8 people found this page helpful
