| 記号名 | Last Quarter Moon |
| Unicodeバージョン | 1.1 |
| Unicode | U+263E |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \263E |
| 16進コード | 0x263E |
| HTMLコード | ☾ |
| LaTeX | \text{LASTQUARTERMOON} |
| 記号 | ☾ |
| URLエンコード(UTF-8パーセント) | %E2%98%BE |
| 読み上げ名 / スクリーンリーダー | Last Quarter Moon |
| UTF-8 | E2 98 BE |
| UTF-16 | 263E |
| UTF-32 | 0000263E |
1\documentclass{article}2\usepackage{pifont}3\text{LASTQUARTERMOON}4\end{document}以下の方法でほとんどの最新デバイスでlast quarter moon記号を入力できます:
Alt + 9790 on Windows (numeric keypad with Num Lock), or insert via Character Map / emoji panel.
Edit → Emoji & Symbols, search "last quarter moon", or paste from this page.
Ctrl + Shift + U, type 263e, 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.last-quarter-moon::before { content: "\263E"; }1<span>☾</span>各プログラミング言語におけるLast Quarter Moon記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u263E' or String.fromCodePoint(9790) |
| Python | '\N{LAST QUARTER MOON}' or chr(9790) |
| Rust | '\u{263E}' |
| C / C++ | UTF-8 source or wchar_t with U+263E |
| Go | string(rune(0x263E)) |
| Ruby | "\u{263E}" |