HTML Entity for Descending Node (☋)

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

What You'll Learn

How to display the Descending Node symbol (☋) in HTML using hexadecimal, decimal, and CSS entity methods. This glyph marks the descending node—where an orbit crosses a reference plane (often the ecliptic) going south—and appears in astronomy, orbital mechanics, and astrology (South Node). It is U+260B in the Miscellaneous Symbols block (U+2600–U+26FF).

There is no named HTML entity for U+260B. Use ☋, ☋, or \260B in CSS content. Pair with the Ascending Node (☊) when describing both orbital nodes.

⚡ Quick Reference — Descending Node

Unicode U+260B

Miscellaneous Symbols (U+2600–U+26FF)

Hex Code ☋

Hexadecimal reference

HTML Code ☋

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+260B
Hex code       ☋
HTML code      ☋
Named entity   —
CSS code       \260B
1

Complete HTML Example

This example demonstrates the Descending Node symbol (☋) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\260B";
  }
 </style>
</head>
<body>
<p>Descending Node using Hexadecimal: &#x260B;</p>
<p>Descending Node using HTML Code: &#9739;</p>
<p id="point" aria-label="Descending Node">Descending Node using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+260B is supported in modern browsers; use a font with Miscellaneous Symbols coverage for consistent display:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 3.2+

👀 Live Preview

See the Descending Node symbol (☋) in astronomical and astrological contexts:

Orbital node Descending node ☋
Astrology South Node ☋   North Node ☊
Moon nodes Lunar descending node ☋
Large glyph
Monospace refs &#x260B; &#9739; \260B

🧠 How It Works

1

Hexadecimal Code

&#x260B; uses the Unicode hexadecimal value 260B to display the Descending Node symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#9739; uses the decimal Unicode value 9739 to display the same character.

HTML markup
3

CSS Entity

\260B is used in CSS stylesheets, particularly in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

All three methods produce the Descending Node symbol: . Unicode U+260B is in Miscellaneous Symbols (U+2600–U+26FF). No named HTML entity exists.

Use Cases

The Descending Node symbol (☋) is commonly used in:

🔭 Astronomy

Orbital elements and node positions in educational or professional astronomy content.

⭐ Astrology

South Node in birth charts, transit charts, and horoscope applications.

🌐 Orbital mechanics

Diagrams, satellite trajectories, and celestial mechanics illustrations.

🌌 Planetarium apps

Star maps, space tools, and planetarium-style web experiences.

📄 Scientific docs

Physics and astronomy documentation describing orbital nodes and reference planes.

📱 Chart widgets

Natal chart UIs and compatibility tools that display the South Node.

💡 Best Practices

Do

  • Use &#x260B; or &#9739; since no named entity exists
  • Add aria-label="Descending Node" when the symbol carries meaning alone
  • Pair with Ascending Node (☊) for full orbital context
  • Use \260B only inside CSS content
  • Explain South Node vs descending node when audiences may be unfamiliar

Don’t

  • Use the incorrect code point U+0260B (correct value is U+260B)
  • Use CSS escape \0260B (use \260B for U+260B)
  • Assume a named entity exists—U+260B has none
  • Put CSS escape \260B in HTML text nodes
  • Mix hex and decimal styles randomly in one file

Key Takeaways

1

No named entity—use numeric references

&#x260B; &#9739;
2

For CSS stylesheets, use \260B in the content property

\260B
3

U+260B DESCENDING NODE (South Node in astrology)

4

Miscellaneous Symbols block—pair with ☊ ascending node

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x260B; (hex), &#9739; (decimal), or \260B in CSS content. There is no named HTML entity. All produce ☋.
U+260B (DESCENDING NODE). Miscellaneous Symbols block (U+2600–U+26FF). Hex 260B, decimal 9739. Marks where an orbit crosses the reference plane going south.
In astronomy and education sites, astrological charts (South Node), orbital mechanics diagrams, planetarium or space apps, and scientific documentation on celestial mechanics.
HTML numeric references (&#9739; or &#x260B;) go in markup. The CSS escape \260B is used in stylesheets, typically in the content property of pseudo-elements. Both render ☋.
Named HTML entities do not include this astronomical symbol. Numeric references are standard for Miscellaneous Symbols. Use &#9739; or &#x260B; in HTML, or \260B in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — astronomical symbols, math operators, IPA letters, 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