HTML Entity for Ascending Node (☊)

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

What You'll Learn

How to display the Ascending Node symbol (☊) in HTML using numeric character references and CSS. This glyph denotes the ascending node—where an orbit crosses a reference plane from south to north—and appears in astronomy, orbital mechanics, and astrology (often alongside the descending node, U+260B ☋).

It lives in the Miscellaneous Symbols Unicode block. There is no standard named HTML entity; use hexadecimal ☊, decimal ☊, or the CSS escape \260A in the content property.

⚡ Quick Reference — Ascending Node Entity

Unicode U+260A

Miscellaneous Symbols block

Hex Code ☊

Hexadecimal reference

HTML Code ☊

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+260A
Hex code       ☊
HTML code      ☊
Named entity   (none)
CSS code       \260A
1

Complete HTML Example

This example shows the Ascending Node (☊) using hexadecimal and decimal character references, plus a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\260A";
  }
 </style>
</head>
<body>

<p>Ascending Node using Hexa Decimal: &#x260A;</p>
<p>Ascending Node using HTML Code: &#9738;</p>
<p id="point">Ascending Node using CSS Entity: </p>

</body>
</html>
Try it Yourself

🌐 Browser Support

The Ascending Node character references are supported in all modern browsers:

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

👀 Live Preview

See the Ascending Node glyph in different contexts:

Inline text The Moon’s ascending node (☊) lies in Virgo in this example chart.
Large glyph
With descending node Ascending ☊ · Descending ☋
Monospace Omega = 45° at ☊
Orbital notation i, Ω, ω (inclination, RA of ☊, arg. of periapsis)

🧠 How It Works

1

Hexadecimal Code

&#x260A; uses the Unicode hexadecimal value 260A to display the Ascending Node. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#9738; uses the decimal Unicode value 9738 for the same character. This form is common in older references and CMS fields.

HTML markup
3

CSS Entity

\260A is used in CSS, especially in the content property of ::before and ::after.

CSS stylesheet
4

No named entity

Unlike symbols such as &copy;, U+260A has no standard named HTML entity. Always use numeric references or CSS escapes.

HTML markup
=

Same visual result

Hex, decimal, and CSS methods all produce . Unicode U+260A is in the Miscellaneous Symbols range (U+2600–U+26FF).

Use Cases

The Ascending Node (☊) commonly appears in these scenarios:

🔭 Astronomy & orbits

Orbital diagrams, Keplerian elements, and lessons on ascending vs. descending node.

♈ Astrology software

Charts showing the Moon’s nodes (☊ north, ☋ south) and transit wheels.

📚 Education

Physics and astronomy tutorials, textbooks, and e-learning on orbital nodes.

📐 Scientific notation

Papers and apps referencing longitude of ascending node (Ω) and related parameters.

🛰 Space apps

TLE viewers, mission planning UIs, and satellite orbit visualizations.

♿ Accessibility

Pair the glyph with text or aria-label (“Ascending node”) so meaning is clear.

🌐 Multilingual content

International astronomy and astrology sites where ☊ is the conventional mark.

💡 Best Practices

Do

  • Stick to either hex or decimal site-wide for consistency
  • Add aria-label or visible captions on charts
  • Choose fonts that cover Miscellaneous Symbols (U+2600+)
  • Use \260A only in CSS content, not raw HTML
  • Explain “ascending node” on first use in general-audience copy

Don’t

  • Assume a invented named entity exists (there isn’t one)
  • Mix hex and decimal arbitrarily in one template
  • Rely on the symbol alone without context for screen readers
  • Use CSS escapes inside HTML text nodes
  • Confuse ☊ (ascending) with ☋ (descending node)

Key Takeaways

1

Two HTML numeric forms render ☊

&#x260A; &#9738;
2

In CSS, use the escape in content on pseudo-elements

\260A
3

Unicode U+260A is in the Miscellaneous Symbols block

4

There is no standard named HTML entity for this glyph

5

Pair the symbol with explanatory text or labels the first time it appears

❓ Frequently Asked Questions

Use &#x260A; (hex), &#9738; (decimal), or \260A in CSS content. There is no standard named entity.
U+260A (hex 260A, decimal 9738). Used for the ascending (north) node in orbital and chart notation.
In astronomy and orbital mechanics, astrology charts, educational materials, celestial diagrams, and any content that references the ascending node.
HTML references (&#9738; or &#x260A;) belong in markup. The CSS escape \260A belongs in stylesheets, typically in content on ::before or ::after.
No. Use &#x260A;, &#9738;, or \260A in CSS.

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