HTML Entity for Pluto (♇)

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

What You'll Learn

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

It is U+2647 (PLUTO) in the Miscellaneous Symbols block (U+2600–U+26FF). Use ♇, ♇, or CSS \2647. There is no named HTML entity for this character.

⚡ Quick Reference — Pluto Symbol

Unicode U+2647

Miscellaneous Symbols

Hex Code ♇

Hexadecimal reference

HTML Code ♇

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2647
Hex code       ♇
HTML code      ♇
Named entity   (none)
CSS code       \2647
Meaning        Planet Pluto (♇)
Related        U+2646 = Neptune (♆)
               U+2645 = Uranus (♅)
               U+2644 = Mars (♄)
Block          Miscellaneous Symbols (U+2600–U+26FF)
1

Complete HTML Example

A simple example showing the Pluto symbol (U+2647) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2647";
  }
 </style>
</head>
<body>
<p>Pluto (hex): &#x2647;</p>
<p>Pluto (decimal): &#9799;</p>
<p id="point">Pluto (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

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

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Pluto symbol (♇) in astronomy and reference contexts:

Planet label ♇ Pluto
Large glyph
Outer planets ♅ Uranus   ♆ Neptune   ♇ Pluto
Astrology note ♇ transformation, rebirth (traditional association)
Numeric refs &#x2647; &#9799; \2647

🧠 How It Works

1

Hexadecimal Code

&#x2647; uses the Unicode hexadecimal value 2647 to display the Pluto symbol.

HTML markup
2

Decimal HTML Code

&#9799; uses the decimal Unicode value 9799 for the same character.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Planet symbol result

All three methods render . Unicode U+2647 in Miscellaneous Symbols. Next: Pound Sign (£).

Use Cases

The Pluto symbol (♇) is commonly used in:

🚀 Astronomy

Solar system charts, planet lists, and space education content.

★ Astrology

Birth charts, horoscopes, and zodiac reference material.

🎓 Education

Science textbooks and articles about dwarf planets and the Kuiper belt.

📝 Science Blogs

Popular astronomy articles and mission updates (e.g. New Horizons).

📋 Unicode References

Character pickers and Miscellaneous Symbols documentation.

💻 Web Apps

Planet selectors, star maps, and astronomy-themed interfaces.

♿ Accessibility

Pair ♇ with the word “Pluto” for screen reader clarity.

💡 Best Practices

Do

  • Use &#x2647; or &#9799; for the standard Pluto glyph
  • Label symbols with planet names: ♇ Pluto
  • Use CSS \2647 in ::before for icon-style planet markers
  • Pick one numeric style per project for consistency
  • Test glyph rendering with your site’s font stack

Don’t

  • Confuse ♇ (Pluto) with ♆ (Neptune) or ♅ (Uranus)
  • Use padded notation like U+02647—the correct value is U+2647
  • Use CSS escape \2647 in HTML text nodes
  • Rely on ♇ alone without text in accessible planet lists
  • Assume every font renders astronomical symbols identically

Key Takeaways

1

Two HTML numeric references plus CSS for U+2647

&#x2647; &#9799;
2

For CSS stylesheets, use \2647 in the content property

3

Unicode U+2647 — PLUTO in Miscellaneous Symbols

4

No named entity—use hex, decimal, or CSS escape

❓ Frequently Asked Questions

Use &#x2647; (hex), &#9799; (decimal), or \2647 in CSS content. There is no named entity. All render ♇.
U+2647 (PLUTO). Miscellaneous Symbols block (U+2600–U+26FF). Hex 2647, decimal 9799.
In astronomy and astrology content, planet reference charts, educational articles about the solar system, and any web page needing the standard Pluto glyph.
HTML references (&#9799; or &#x2647;) go in markup. The CSS escape \2647 is used in stylesheets, typically in the content property. Same visual result.
Named HTML entities cover a subset of common characters. U+2647 uses numeric hex or decimal codes or CSS escapes, which is standard for Miscellaneous Symbols.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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