| Nombre del símbolo | Circled Triangle Down |
| Versión Unicode | 3.0 |
| Unicode | U+238A |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \238A |
| Código hexadecimal | 0x238A |
| Código HTML | ⎊ |
| LaTeX | \text{CIRCLEDTRIANGLEDOWN} |
| Símbolo | ⎊ |
| Codificación URL (porcentaje UTF-8) | %E2%8E%8A |
| Nombre oral / lector de pantalla | Circled Triangle Down |
| UTF-8 | E2 8E 8A |
| UTF-16 | 238A |
| UTF-32 | 0000238A |
1\documentclass{article}2\usepackage{pifont}3\text{CIRCLEDTRIANGLEDOWN}4\end{document}Puedes escribir el símbolo circled triangle down en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 9098 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "circled triangle down", or use Unicode Hex Input with 238A.
Ctrl + Shift + U, type 238a, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with geometric symbol support.
1span.circled-triangle-down::before { content: "\238A"; }1<span>⎊</span>La representación del símbolo Circled Triangle Down en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u238A' or String.fromCodePoint(9098) |
| Python | '\N{CIRCLED TRIANGLE DOWN}' or chr(9098) |
| Rust | '\u{238A}' |
| C / C++ | UTF-8 source or wchar_t with U+238A |
| Go | string(rune(0x238A)) |
| Ruby | "\u{238A}" |