| Nome del simbolo | Circled Triangle Down |
| Versione Unicode | 3.0 |
| Unicode | U+238A |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \238A |
| Codice esadecimale | 0x238A |
| Codice HTML | ⎊ |
| LaTeX | \text{CIRCLEDTRIANGLEDOWN} |
| Simbolo | ⎊ |
| Codifica URL (percentuale UTF-8) | %E2%8E%8A |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo circled triangle down sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Circled Triangle Down nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |