HTML Entity for Jupiter (♃)

What You'll Learn
How to display the Jupiter symbol (♃) in HTML using hexadecimal, decimal, and CSS escape methods. The symbol denotes the planet Jupiter in astronomy and astrology.
It is U+2643 (JUPITER) in the Miscellaneous Symbols block (U+2600–U+26FF). Use ♃, ♃, or CSS \2643. There is no named HTML entity for this character.
⚡ Quick Reference — Jupiter Symbol
U+2643Miscellaneous Symbols
♃Hexadecimal reference
♃Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2643
Hex code ♃
HTML code ♃
Named entity (none)
CSS code \2643
Meaning Planet Jupiter (♃)
Glyph ♃
Example Planets: ♃ JupiterComplete HTML Example
This example shows the Jupiter symbol (U+2643) 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: "\2643";
}
</style>
</head>
<body>
<p>Jupiter using Hexadecimal: ♃</p>
<p>Jupiter using Decimal: ♃</p>
<p id="point">Jupiter using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Jupiter symbol (♃) is widely supported when fonts include Miscellaneous Symbols (U+2600–U+26FF):
👀 Live Preview
See the Jupiter symbol (♃) in astronomy and astrology contexts:
🧠 How It Works
Hexadecimal Code
♃ uses the Unicode hexadecimal value 2643 to display the Jupiter symbol (♃).
Decimal HTML Code
♃ uses the decimal Unicode value 9795 for the same character.
CSS Entity
\2643 is used in CSS stylesheets in the content property, often on ::after following a base character in markup.
No Named Entity
U+2643 has no standard &...; named form. Use hex, decimal, or CSS escape only.
Same visual result
All three methods produce ♃ (♃). Unicode U+2643 is in Miscellaneous Symbols. Next: Kelvin Sign.
Use Cases
The Jupiter symbol (♃) is commonly used in:
Planet lists, solar system content, and space education with ♃.
Horoscopes, birth charts, and zodiac content using the Jupiter symbol.
STEM textbooks and tutorials covering planets and symbols.
Planet tables, infographics, and encyclopedic content.
Logos, icons, and UI that need the Jupiter (♃) character.
Character pickers and Unicode reference for planet symbols.
💡 Best Practices
Do
- Use
♃or♃in HTML content - Use fonts that support Miscellaneous Symbols (U+2643)
- Set
<meta charset="utf-8"> - Pick one numeric style per project
- Add
aria-labelor nearby text (e.g. “Jupiter”) for accessibility
Don’t
- Expect a named HTML entity for U+2643
- Use CSS
\2643inside HTML text nodes - Use fonts without Miscellaneous Symbols support
- Mix entity styles randomly in one file
Key Takeaways
Two HTML numeric references plus CSS for U+2643
♃ ♃For CSS, use \2643 in the content property
Unicode U+2643 — JUPITER
Miscellaneous Symbols block; glyph ♃ (♃)
Previous: Latin Small Letter Iota Next: Kelvin Sign
❓ Frequently Asked Questions
♃ (hex), ♃ (decimal), or \2643 in CSS content. There is no named entity. All methods render ♃ (♃) when the font supports U+2643.U+2643 (JUPITER). Miscellaneous Symbols block (U+2600–U+26FF). Hex 2643, decimal 9795. Used in astronomy and astrology for the planet Jupiter.♃ or ♃) go in markup. The CSS escape \2643 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
