HTML Entity for Jupiter (♃)

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+2643

What Is the Jupiter Entity?

Jupiter (♃) is the Miscellaneous Symbols character at Unicode U+2643 (JUPITER). It denotes the planet Jupiter in astronomy and astrology.

Remember
Character     ♃
Unicode       U+2643
Hex entity    ♃
Decimal       ♃
CSS escape    \2643
Named entity  (none)

All of these produce the same glyph: ♃ (when the font supports U+2643). Prefer numeric entities in HTML; use CSS \2643 only in content.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Hex entity♃HTML markup
Decimal entity♃HTML markup
CSS escape\2643Stylesheet content
Direct character♃UTF-8 HTML text
Named entity—Not defined in HTML5

When to Use Which

SituationUse
Need an entity in HTML source♃ or ♃
Generated text via ::before / ::aftercontent: "\2643"
UTF-8 page, typing is easyType ♃ directly
Looking for a named &...; formDoes not exist — use numeric form
AccessibilityAdd nearby text or aria-label (e.g. “Jupiter”)

Live Preview

Jupiter symbol in astronomy and astrology contexts.

Labeled ♃ Jupiter
Large glyph ♃
With neighbors ♂ ♃ ♄
Planet list ♃ Jupiter — gas giant
With entities Hex: ♃ | Decimal: ♃

Complete HTML Example

One page that shows Jupiter with hex, decimal, CSS, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce ♃ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Jupiter (♃) in HTML</title>
  <style>
    #point::after {
      content: "\2643";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x2643;</p>
  <p>Using HTML Code: &#9795;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: ♃</p>
  <p>Labeled: &#x2643; Jupiter</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+2643 → &#x2643; in HTML. The browser turns it into ♃.

2. Decimal: same code point as 9795 → &#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. &#x2643; / &#9795; 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 &#9795;, not &#9795.

Default

Type ♃ when you can

On UTF-8 pages you may type ♃ directly; entities help when encoding must be explicit.

Browser Support

Jupiter (U+2643) and its numeric entity forms (&#x2643;, &#9795;, 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 Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2643 / entities Full support

Bottom line: Prefer &#x2643; or &#9795; in HTML. Use \\2643 only inside CSS content. Rendering quality depends on the font.

Key Takeaways

  • Unicode: Jupiter is U+2643 (decimal 9795).
  • HTML: use &#x2643; or &#9795; — 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 → &#x2643; / &#9795; / CSS \2643.

Frequently Asked Questions

Use &#x2643; (hex), &#9795; (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 &#x2643; or &#9795; 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 (&#9795; or &#x2643;) 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 &#x2643; or &#9795;. Pair the glyph with the word “Jupiter” for accessibility.

Next: Kelvin Sign

Learn the HTML entity for the Kelvin sign — next in this sequence.

Kelvin Sign 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