HTML Entity for Descending Node (☋)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+260B

What Is Descending Node?

Descending node (☋) is the Unicode character at U+260B in the Miscellaneous Symbols block. Official name: DESCENDING NODE. In astronomy it marks where an orbit crosses the reference plane going south; in astrology it is often called the South Node.

Remember
Character     ☋
Unicode       U+260B
Hex entity    ☋
Decimal       ☋
CSS escape    \260B
Named entity  (none)
Not the same  ☊ U+260A (ascending)

Prefer typing ☋ in UTF-8 HTML when your editor supports it; use ☋ or ☋ when you need an explicit entity.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character☋HTML text (UTF-8)
Hex entity☋HTML markup
Decimal entity☋HTML markup
CSS escape\260BStylesheet content
Named entity—Not defined in HTML5

When to Use Which

SituationUse
Descending / South Node☋ or type ☋
Ascending / North Node☊ U+260A
Both nodes in one chart☊ with ☋
Generated / numeric-only markup☋ or ☋
Generated text via ::before / ::aftercontent: "\260B"

Live Preview

Descending node rendered in common astronomy / astrology contexts.

Label South Node: ☋
Large glyph ☋
Compared ☋   ☊
Chart line Ascending ☊   Descending ☋
With entities Hex: ☋ | Decimal: ☋

Complete HTML Example

One page that shows Descending Node with hex, decimal, CSS escape, 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>Descending Node (☋) in HTML</title>
  <style>
    #point::after {
      content: "\260B";
    }
  </style>
</head>
<body>
  <p>Descending node using Hex Code: &#x260B;</p>
  <p>Descending node using HTML Code: &#9739;</p>
  <p id="point">Descending node using CSS Entity: </p>
  <p>Typed directly: ☋</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+260B → &#x260B; in HTML → ☋.

2. Decimal: same code point as 9739 → &#9739;. Same result as hex.

3. CSS: use \260B in content (not an HTML entity). #point::after appends that ☋ after the paragraph text.

4. Typed: in a UTF-8 page you can paste ☋ directly. All four lines show the same glyph.

Pitfalls & Tips

Common mistakes when working with Descending Node.

Named?

No named entity

HTML5 has no &…; name for U+260B. Use &#x260B; or &#9739;.

☊

Not ascending node

☊ is U+260A (ascending / North Node). ☋ is specifically descending / South Node.

Access

Label the symbol

Add visible text or aria-label (e.g. “South Node”) so screen readers are not left with an unlabeled glyph.

CSS vs HTML

Do not mix escapes

\260B belongs in CSS strings. &#x260B; / &#9739; belong in HTML.

Fonts

Symbol font coverage

Some fonts omit U+260B. Prefer a font with Miscellaneous Symbols coverage for display.

Semicolon

End references

Always finish with ; — write &#9739;, not &#9739.

Browser Support

Descending node (U+260B) and its numeric entity forms (&#x260B;, &#9739;, CSS \\260B) are supported in all mainstream browsers. Visible glyphs depend on Miscellaneous Symbols font coverage.

✓ Universal support

Descending Node (&#x260B;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

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+260B / entities Full support

Bottom line: Use &#x260B; or &#9739; in HTML when you need this symbol, and \\260B only inside CSS content. Do not confuse with ascending node ☊.

Key Takeaways

  • Unicode: descending node is U+260B (decimal 9739) — glyph ☋.
  • HTML: type ☋, or use &#x260B; / &#9739; (no named entity).
  • CSS: use \260B inside content for generated text.
  • Watch out: ☋ (descending) ≠ ☊ (ascending).

One line: U+260B → &#x260B; / &#9739; / CSS \260B / type ☋.

Frequently Asked Questions

Use &#x260B; (hex), &#9739; (decimal), type ☋ directly in UTF-8, or the CSS escape \260B in content. There is no named HTML entity for U+260B.
U+260B (DESCENDING NODE). Hex 260B, decimal 9739. It belongs to the Miscellaneous Symbols block (U+2600–U+26FF).
No. Use numeric references like &#9739; or &#x260B;, or type the character ☋ in a UTF-8 document.
Use it in astronomy and orbital mechanics for the descending node, and in astrology charts for the South Node. Pair with ascending node (U+260A) when both are needed.
HTML entities (&#9739; or &#x260B;) go in markup. The CSS escape \260B goes in stylesheet strings (usually content on ::before/::after).
☋ (U+260B) is the descending / South Node. ☊ (U+260A) is the ascending / North Node. They are opposite orbital node symbols.

Did you know?

Descending node is Unicode U+260B (decimal 9739) — glyph ☋ in the Miscellaneous Symbols block. HTML5 has no named entity. In astronomy it marks the descending orbital node; in astrology it is often called the South Node. It is not ascending node ☊ (U+260A).

Next: Diaeresis

Learn the HTML entity for diaeresis.

Diaeresis 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