| 記号名 | Descending Node |
| Unicodeバージョン | 1.1 |
| Unicode | U+260B |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \260B |
| 16進コード | 0x260B |
| HTMLコード | ☋ |
| LaTeX | \text{DESCENDINGNODE} |
| 記号 | ☋ |
| URLエンコード(UTF-8パーセント) | %E2%98%8B |
| 読み上げ名 / スクリーンリーダー | Descending Node |
| UTF-8 | E2 98 8B |
| UTF-16 | 260B |
| UTF-32 | 0000260B |
1\documentclass{article}2\usepackage{pifont}3\text{DESCENDINGNODE}4\end{document}以下の方法でほとんどの最新デバイスでdescending node記号を入力できます:
Alt + 9739 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "descending node", or use Unicode Hex Input with 260B.
Ctrl + Shift + U, type 260b, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with astrology symbol support.
1span.descending-node::before { content: "\260B"; }1<span>☋</span>各プログラミング言語におけるDescending Node記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u260B' or String.fromCodePoint(9739) |
| Python | '\N{DESCENDING NODE}' or chr(9739) |
| Rust | '\u{260B}' |
| C / C++ | UTF-8 source or wchar_t with U+260B |
| Go | string(rune(0x260B)) |
| Ruby | "\u{260B}" |