| Symbol Name | First Quarter Moon |
| Unicode Version | 1.1 |
| Unicode | U+263D |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \263D |
| Hex Code | 0x263D |
| HTML Code | ☽ |
| LaTeX | \text{FIRSTQUARTERMOON} |
| Symbol | ☽ |
| URL encode (UTF-8 percent) | %E2%98%BD |
| Spoken / screen reader name | First Quarter Moon |
| UTF-8 | E2 98 BD |
| UTF-16 | 263D |
| UTF-32 | 0000263D |
1\documentclass{article}2\usepackage{pifont}3\text{FIRSTQUARTERMOON}4\end{document}You can type the first quarter moon symbol on most modern devices with the help of following methods:
Alt + 9789 on Windows (numeric keypad with Num Lock), or insert via Character Map / emoji panel.
Edit → Emoji & Symbols, search "first quarter moon", or paste from this page.
Ctrl + Shift + U, type 263d, then Enter (layout-dependent), or paste.
Paste from this page, use the emoji keyboard, or pick from weather symbol suggestions.
Paste from this page or use keyboard weather/emoji suggestions.
1span.first-quarter-moon::before { content: "\263D"; }1<span>☽</span>First Quarter Moon symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u263D' or String.fromCodePoint(9789) |
| Python | '\N{FIRST QUARTER MOON}' or chr(9789) |
| Rust | '\u{263D}' |
| C / C++ | UTF-8 source or wchar_t with U+263D |
| Go | string(rune(0x263D)) |
| Ruby | "\u{263D}" |