| Nombre del símbolo | Descending Node |
| Versión Unicode | 1.1 |
| Unicode | U+260B |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \260B |
| Código hexadecimal | 0x260B |
| Código HTML | ☋ |
| LaTeX | \text{DESCENDINGNODE} |
| Símbolo | ☋ |
| Codificación URL (porcentaje UTF-8) | %E2%98%8B |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo descending node en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Descending Node en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |