HTML Entity for First Quarter Moon (☽)

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

What You'll Learn

How to display the First Quarter Moon symbol (☽) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+263D (FIRST QUARTER MOON) in the Miscellaneous Symbols block (U+2600–U+26FF)—used for lunar phases, astronomy, calendars, and space-related content when the moon is half-illuminated (waxing).

Render it with ☽, ☽, or CSS escape \263D. There is no named HTML entity. For emoji-style lunar phases see U+1F313 (🌓). Related symbols include last quarter moon (☾, U+263E).

⚡ Quick Reference — First Quarter Moon

Unicode U+263D

Miscellaneous Symbols

Hex Code ☽

Hexadecimal reference

HTML Code ☽

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+263D
Hex code       ☽
HTML code      ☽
Named entity   (none)
CSS code       \263D
Meaning        First quarter lunar phase (waxing)
Related        U+263E = Last quarter moon (☾); U+1F313 = Emoji quarter moon (🌓)
1

Complete HTML Example

This example demonstrates the First Quarter Moon (☽) 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: "\263D";
  }
 </style>
</head>
<body>
<p>First Quarter Moon using Hexadecimal: &#x263D;</p>
<p>First Quarter Moon using HTML Code: &#9789;</p>
<p id="point">First Quarter Moon using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The First Quarter Moon symbol is widely supported in modern browsers with a suitable font:

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

👀 Live Preview

See the first quarter moon (☽) in lunar phase context:

Phase label ☽ First Quarter
Calendar row Mon 12 ☽ Waxing
vs last quarter ☽ (first)   vs   ☾ (last quarter)
Large glyph
Numeric refs &#x263D; &#9789; \263D

🧠 How It Works

1

Hexadecimal Code

&#x263D; uses the Unicode hexadecimal value 263D to display the First Quarter Moon symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\263D is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+263D is in Miscellaneous Symbols. No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The First Quarter Moon symbol (☽) is commonly used in:

🌙 Astronomy

Lunar phase information, moon calendars, and astronomy education content.

📅 Calendars

Moon phases in calendar widgets, planners, and date-selection interfaces.

🌤️ Weather apps

Indicate moon phase in weather apps, stargazing tools, and night-sky guides.

✨ Astrology

Astrology charts, horoscope content, and moon-sign references.

🔬 Education

Teach lunar phases, astronomy, and space science on educational websites.

🌍 Cultural events

Lunar festivals, moon-viewing events, and cultural content tied to moon phases.

💡 Best Practices

Do

  • Add aria-label="First quarter moon" or visible text for accessibility
  • Pair the symbol with a phase name (e.g. “First Quarter”) in UI
  • Use a font that supports Miscellaneous Symbols (Segoe UI Symbol, etc.)
  • Use &#x263D; or &#9789; consistently within a project
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ☽ (first quarter) with ☾ (last quarter) or 🌓 (emoji style)
  • Expect a named entity—none exists for U+263D
  • Put CSS escape \263D in HTML text nodes
  • Rely on the symbol alone without accessible text for screen readers
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references plus CSS render ☽

&#x263D; &#9789;
2

For CSS stylesheets, use the escape in the content property

\263D
3

Unicode U+263D — FIRST QUARTER MOON

4

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

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x263D; (hex), &#9789; (decimal), or \263D in CSS content. There is no named entity.
U+263D (FIRST QUARTER MOON). Miscellaneous Symbols block (U+2600–U+26FF). Hex 263D, decimal 9789. Represents the first quarter lunar phase.
In astronomy and lunar phase content, calendars and date pickers, weather and night-sky apps, astrology or horoscope sites, space and science education, and any content that needs moon phases or moon icons.
HTML references (&#9789; or &#x263D;) go in markup. The CSS escape \263D is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover a subset of common characters. Symbols in the Miscellaneous Symbols block like U+263D use numeric codes (hexadecimal or decimal). This is standard practice for such symbols in HTML.

Explore More HTML Entities!

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