HTML Entity for Pluto (♇)

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
U+2647Miscellaneous Symbols
♇Hexadecimal reference
♇Decimal reference
—Use numeric codes only
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)Complete HTML Example
A simple example showing the Pluto symbol (U+2647) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\2647";
}
</style>
</head>
<body>
<p>Pluto (hex): ♇</p>
<p>Pluto (decimal): ♇</p>
<p id="point">Pluto (CSS): </p>
</body>
</html>🌐 Browser Support
The Pluto symbol (♇) is widely supported when fonts include Miscellaneous Symbols (U+2600–U+26FF):
👀 Live Preview
See the Pluto symbol (♇) in astronomy and reference contexts:
🧠 How It Works
Hexadecimal Code
♇ uses the Unicode hexadecimal value 2647 to display the Pluto symbol.
Decimal HTML Code
♇ uses the decimal Unicode value 9799 for the same character.
CSS Entity
\2647 is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.
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:
Solar system charts, planet lists, and space education content.
Birth charts, horoscopes, and zodiac reference material.
Science textbooks and articles about dwarf planets and the Kuiper belt.
Popular astronomy articles and mission updates (e.g. New Horizons).
Character pickers and Miscellaneous Symbols documentation.
Planet selectors, star maps, and astronomy-themed interfaces.
Pair ♇ with the word “Pluto” for screen reader clarity.
💡 Best Practices
Do
- Use
♇or♇for the standard Pluto glyph - Label symbols with planet names:
♇ Pluto - Use CSS
\2647in::beforefor 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
\2647in HTML text nodes - Rely on ♇ alone without text in accessible planet lists
- Assume every font renders astronomical symbols identically
Key Takeaways
Two HTML numeric references plus CSS for U+2647
♇ ♇For CSS stylesheets, use \2647 in the content property
Unicode U+2647 — PLUTO in Miscellaneous Symbols
No named entity—use hex, decimal, or CSS escape
Previous: Combining Plus Sign Below Next: Pound Sign (£)
❓ Frequently Asked Questions
♇ (hex), ♇ (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.♇ or ♇) go in markup. The CSS escape \2647 is used in stylesheets, typically in the content property. Same visual result.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
