Using Hex Code: ♃
Using HTML Code: ♃
Using CSS Entity: ♃
Typed directly: ♃
Labeled: ♃ Jupiter
How It Works
1. Hex:U+2643 → ♃ in HTML. The browser turns it into ♃.
2. Decimal: same code point as 9795 → ♃. Same result as hex.
3. CSS: use \2643 in content (not an HTML entity). #point::after appends that ♃ after the paragraph text.
4. Typed: in UTF-8 you can type ♃ directly — same visual result when the font supports it.
Pitfalls & Tips
Common mistakes when working with the Jupiter symbol.
Named?
No named entity
HTML5 does not define a named entity for U+2643. Use numeric forms.
A11y
Label the planet
Add “Jupiter” nearby or use aria-label so the symbol is not silent to assistive tech.
CSS vs HTML
Do not mix escapes
\2643 belongs in CSS. ♃ / ♃ belong in HTML.
Fonts
Miscellaneous Symbols
Use fonts that include U+2643 so the glyph is not missing.
Semicolon
End references
Always finish with ; — write ♃, not ♃.
Default
Type ♃ when you can
On UTF-8 pages you may type ♃ directly; entities help when encoding must be explicit.
Compatibility
Browser Support
Jupiter (U+2643) and its numeric entity forms (♃, ♃, CSS \\2643) are supported in all mainstream browsers when the font includes Miscellaneous Symbols.
✓ Universal support
Jupiter (♃)
Encode with hex, decimal, or CSS escape — same character when the font supports U+2643.
100%Browser coverage
Google ChromeSupported
Yes
Microsoft EdgeSupported
Yes
Mozilla FirefoxSupported
Yes
Apple SafariSupported
Yes
OperaSupported
Yes
Internet ExplorerAll versions
Yes
U+2643 / entitiesFull support
Bottom line: Prefer ♃ or ♃ in HTML. Use \\2643 only inside CSS content. Rendering quality depends on the font.
Remember
Key Takeaways
Unicode: Jupiter is U+2643 (decimal 9795).
HTML: use ♃ or ♃ — no named entity.
CSS: use \2643 inside content for generated text.
A11y: pair ♃ with the word “Jupiter” when the meaning matters.
One line:U+2643 → ♃ / ♃ / CSS \2643.
Frequently Asked Questions
Use ♃ (hex), ♃ (decimal), or the CSS escape \2643 in the content property. All render ♃ when the font supports Miscellaneous Symbols. There is no named HTML entity.
U+2643 (JUPITER). Hex 2643, decimal 9795. It belongs to the Miscellaneous Symbols block.
No. HTML5 does not define a named entity for U+2643. Use numeric references like ♃ or ♃ when you need an entity form.
Use it in astronomy, astrology, planet lists, and educational space content. Prefer numeric entities when encoding must be explicit; type ♃ directly in UTF-8 pages when convenient.
HTML entities (♃ or ♃) go in markup. The CSS escape \2643 is used in stylesheets (usually in the content property of ::before/::after). Both render ♃.
Do not rely on the symbol alone. Add nearby text such as “Jupiter” or an aria-label so screen readers announce the meaning.
🤔
Did you know?
Jupiter is Unicode U+2643 (decimal 9795) — JUPITER. HTML5 has no named entity for it — use ♃ or ♃. Pair the glyph with the word “Jupiter” for accessibility.