| Nom du symbole | Descending Node |
| Version Unicode | 1.1 |
| Unicode | U+260B |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \260B |
| Code hexadécimal | 0x260B |
| Code HTML | ☋ |
| LaTeX | \text{DESCENDINGNODE} |
| Symbole | ☋ |
| Encodage URL (pourcent UTF-8) | %E2%98%8B |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole descending node sur la plupart des appareils modernes avec les méthodes suivantes :
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>La représentation du symbole Descending Node dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |