HTML Entity for Opposition (☍)

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

What You'll Learn

How to display the Opposition (☍) symbol in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+260D (OPPOSITION) in the Miscellaneous Symbols block (U+2600–U+26FF). In astronomy and astrology it marks an opposition—when two celestial bodies appear roughly 180° apart in the sky (e.g. Sun ☍ Moon at full moon).

Render it with ☍, ☍, or CSS escape \260D. There is no named HTML entity. Do not confuse ☍ with boolean logic operators like U+00AC (¬, NOT) or U+2227 (∧, AND), or with U+260C (☌, conjunction)—the paired aspect symbol for bodies appearing close together.

⚡ Quick Reference — Opposition

Unicode U+260D

Miscellaneous Symbols

Hex Code ☍

Hexadecimal reference

HTML Code ☍

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+260D
Hex code       ☍
HTML code      ☍
Named entity   (none)
CSS code       \260D
Meaning        Opposition (astronomical aspect)
Related        U+260C = conjunction (☌)
               U+2609 = sun (☉)
               U+263D = first quarter moon (☽)
               U+00AC = logical NOT (¬) — different meaning
Block          Miscellaneous Symbols (U+2600–U+26FF)
1

Complete HTML Example

A simple example showing ☍ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\260D";
  }
 </style>
</head>
<body>
<p>Opposition (hex): &#x260D;</p>
<p>Opposition (decimal): &#9741;</p>
<p id="point">Opposition (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Opposition symbol (☍) is widely supported in all modern browsers:

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

👀 Live Preview

See the Opposition symbol (☍) in astronomical and astrological contexts:

Single symbol
Aspect notation Mars ☍ Saturn
Chart legend ☍ Opposition (180°)
Not the same as Conjunction ☌  |  NOT ¬  |  AND ∧
Numeric refs &#x260D; &#9741; \260D

🧠 How It Works

1

Hexadecimal Code

&#x260D; uses the Unicode hexadecimal value 260D to display the opposition symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\260D is used in CSS stylesheets in the content property of pseudo-elements for chart legends or aspect labels.

CSS stylesheet
=

Astrological aspect result

All three methods render . Unicode U+260D marks planetary opposition. Next: Original Of (⊶).

Use Cases

The Opposition symbol (☍) is commonly used in:

🌌 Astrology charts

Birth charts, transit wheels, and aspect tables marking 180° planetary opposition.

📚 Astronomy education

Teaching planetary positions, ephemeris data, and opposition events (e.g. Mars at opposition).

📅 Ephemeris tables

Date listings and sky calendars showing when bodies reach opposition.

📝 Horoscope content

Articles and apps describing opposition transits between planets.

💻 Web apps

Chart generators, planet trackers, and symbolic UI without custom icon fonts.

📋 Unicode references

Character pickers, entity documentation, and Miscellaneous Symbols guides.

♿ Accessibility

Pair ☍ with text like “Opposition”; do not rely on the symbol alone for meaning.

💡 Best Practices

Do

  • Use &#x260D; or &#9741; in chart legends and aspect notation
  • Label the symbol with “Opposition” or “180°” for clarity
  • Set <meta charset="utf-8"> for reliable rendering
  • Pair with Conjunction (☌) for related aspect symbols
  • Pick one numeric style per project for consistency

Don’t

  • Use ☍ for boolean logic—it is an astrological aspect symbol
  • Confuse opposition ☍ with conjunction ☌ or logical NOT ¬
  • Use padded Unicode notation like U+0260D—the correct value is U+260D
  • Use CSS escape \260D in HTML text nodes
  • Assume every font renders Miscellaneous Symbols identically—test your typeface

Key Takeaways

1

Two HTML numeric references plus CSS for U+260D

&#x260D; &#9741;
2

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

3

Unicode U+260D — OPPOSITION (astronomical aspect)

4

Not a boolean operator; paired concept with ☌ conjunction

❓ Frequently Asked Questions

Use &#x260D; (hex), &#9741; (decimal), or \260D in CSS content. There is no named entity. All three render ☍.
U+260D (OPPOSITION). Miscellaneous Symbols block (U+2600–U+26FF). Hex 260D, decimal 9741.
No. ☍ is an astrological/astronomical aspect symbol for bodies roughly 180° apart. Boolean logic uses different characters such as ¬ (NOT) and ∧ (AND).
For astrology charts, ephemeris tables, horoscope content, astronomy education, and any UI marking a planetary opposition aspect.
Named HTML entities cover a subset of common characters. U+260D uses numeric hex or decimal codes or CSS escapes, which is standard for Miscellaneous Symbols.

Explore More HTML Entities!

Discover 1500+ HTML character references — punctuation, symbols, 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