HTML Entity for Last Quarter Moon (☾)

What You'll Learn
How to display the Last Quarter Moon symbol (☾) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+263E (LAST QUARTER MOON) in the Miscellaneous Symbols block (U+2600–U+26FF)—used for lunar phases, astronomy, calendars, and celestial-themed content when the left half of the moon is illuminated (waning).
Render it with ☾, ☾, or CSS escape \263E. There is no named HTML entity. Do not confuse ☾ with U+263D (☽, first quarter moon) or emoji-style lunar phases like U+1F317 (🌗).
⚡ Quick Reference — Last Quarter Moon
U+263EMiscellaneous Symbols
☾Hexadecimal reference
☾Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+263E
Hex code ☾
HTML code ☾
Named entity (none)
CSS code \263E
Meaning Last quarter lunar phase (waning)
Related U+263D = First quarter moon (☽)
U+1F317 = Emoji last quarter (🌗)Complete HTML Example
A simple example showing the Last Quarter Moon (☾) with hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\263E";
}
</style>
</head>
<body>
<p>Last Quarter Moon using Hexadecimal: ☾</p>
<p>Last Quarter Moon using HTML Code: ☾</p>
<p id="point">Last Quarter Moon using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Last Quarter Moon symbol is widely supported in modern browsers with a suitable font:
👀 Live Preview
See the last quarter moon (☾) in lunar phase context:
🧠 How It Works
Hexadecimal Code
☾ uses the Unicode hexadecimal value 263E to display the Last Quarter Moon symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
☾ uses the decimal Unicode value 9790 to display the same character.
CSS Entity
\263E is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ☾. Unicode U+263E is in Miscellaneous Symbols. No named HTML entity—use numeric codes in markup. Next: Lateral Click (ǁ).
Use Cases
The Last Quarter Moon symbol (☾) is commonly used in:
Lunar phase information, moon calendars, and astronomy education content.
Moon phase indicators in calendar widgets, planners, and lunar phase trackers.
Indicate moon phase in weather apps, stargazing tools, and night-sky guides.
Astrology charts, horoscope content, and moon-sign references.
Teach lunar phases, astronomy, and space science on educational websites.
Lunar festivals, moon-viewing events, and cultural content tied to moon phases.
💡 Best Practices
Do
- Add
aria-label="Last quarter moon"or visible text for accessibility - Pair the symbol with a phase name (e.g. “Last Quarter”) in UI
- Use a font that supports Miscellaneous Symbols (Segoe UI Symbol, etc.)
- Use
☾or☾consistently within a project - Serve pages with UTF-8 (
<meta charset="utf-8">) - Pair with other moon phase symbols for a complete lunar cycle UI
Don’t
- Confuse ☾ (last quarter) with ☽ (first quarter) or 🌗 (emoji style)
- Expect a named entity—none exists for U+263E
- Put CSS escape
\263Ein HTML text nodes - Rely on the symbol alone without accessible text for screen readers
- Mix entity styles randomly in one file
Key Takeaways
Two HTML numeric references plus CSS render ☾
☾ ☾For CSS stylesheets, use the escape in the content property
\263EUnicode U+263E — LAST QUARTER MOON
Miscellaneous Symbols block (U+2600–U+26FF)
Next: Lateral Click (ǁ)
❓ Frequently Asked Questions
☾ (hex), ☾ (decimal), or \263E in CSS content. There is no named entity. All three methods render the symbol (☾) correctly.U+263E (LAST QUARTER MOON). Miscellaneous Symbols block (U+2600–U+26FF). Hex 263E, decimal 9790. Represents the last quarter lunar phase when the left half of the moon is illuminated.☾ or ☾) go in markup. The CSS escape \263E is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.Explore More HTML Entities!
Discover 1500+ HTML character references — moon symbols, astronomy, and more.
8 people found this page helpful
