HTML Entity for Conjunction (☌)

What You'll Learn
How to display the Conjunction (☌) symbol in HTML and CSS. This character is U+260C (CONJUNCTION) in the Miscellaneous Symbols block (U+2600–U+26FF). In astronomy and astrology it marks a conjunction—when two celestial bodies appear close together in the sky (e.g. Sun ☌ Moon).
There is no named HTML entity for U+260C. Use ☌, ☌, or \260C in CSS content. Do not confuse ☌ with set Complement U+2201 (∁) or logical AND U+2227 (∧).
⚡ Quick Reference — Conjunction
U+260CMiscellaneous Symbols (U+2600–U+26FF)
☌Hexadecimal reference
☌Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+260C
Hex code ☌
HTML code ☌
Named entity —
CSS code \260CComplete HTML Example
This example shows U+260C using hexadecimal and decimal character references, plus a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\260C";
}
</style>
</head>
<body>
<p>Conjunction using Hexa Decimal: ☌</p>
<p>Conjunction using HTML Code: ☌</p>
<p id="point">Conjunction using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+260C is supported in modern browsers; glyph appearance may vary by font:
👀 Live Preview
See the Conjunction symbol in astronomy and astrology contexts:
🧠 How It Works
Hexadecimal Code
☌ references code point U+260C using hex digits 260C.
Decimal HTML Code
☌ is the decimal equivalent (9740) for the same character.
CSS Entity
\260C is the CSS escape for U+260C, used in the content property of ::before or ::after.
Same visual result
All three methods produce the Conjunction glyph: ☌. Unicode U+260C sits in Miscellaneous Symbols (U+2600–U+26FF). No named HTML entity exists.
Use Cases
The Conjunction symbol (☌) commonly appears in:
Charts, ephemerides, and sky maps marking planetary conjunctions.
Horoscopes, aspect lists, and zodiac interpretation (Sun ☌ Moon).
Astronomy courses and museum exhibits explaining celestial alignments.
Highlight notable conjunction dates in science calendars.
Stargazing apps, observatory sites, and space news without image sprites.
Unicode tables and Miscellaneous Symbols glossaries.
Provide text like “conjunction” or aria-label so meaning is clear beyond the glyph.
💡 Best Practices
Do
- Use
☌or☌for the astronomical conjunction glyph - Pair with planet names (Sun, Moon, Venus) for readable aspect notation
- Choose fonts with Miscellaneous Symbols support (Segoe UI Symbol, Noto Sans Symbols)
- Use
\260Conly inside CSScontent - Keep numeric reference style consistent in one document
Don’t
- Use ☌ for logical “and”—use ∧ (U+2227) or
∧instead - Confuse U+260C (☌) with set Complement U+2201 (∁)
- Use U+0260C notation—the correct code point is U+260C
- Assume every font renders U+260C distinctly
- Put CSS escape
\260Cin HTML text nodes
Key Takeaways
No named entity—use numeric references
☌ ☌For CSS stylesheets, use the escape in the content property
\260CU+260C CONJUNCTION (astronomical/astrological)
Charts, horoscopes, education, and sky-event content
Three methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
☌ (hex), ☌ (decimal), or \260C in CSS content. There is no named HTML entity for U+260C.U+260C (CONJUNCTION). Miscellaneous Symbols (U+2600–U+26FF). Hex 260C, decimal 9740.☌ or ☌) go directly in HTML markup. The CSS escape \260C is used in stylesheets, typically in the content property of pseudo-elements.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, symbols, arrows, and more.
8 people found this page helpful
