| Nom du symbole | Circled Triangle Down |
| Version Unicode | 3.0 |
| Unicode | U+238A |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \238A |
| Code hexadécimal | 0x238A |
| Code HTML | ⎊ |
| LaTeX | \text{CIRCLEDTRIANGLEDOWN} |
| Symbole | ⎊ |
| Encodage URL (pourcent UTF-8) | %E2%8E%8A |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole circled triangle down sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Circled Triangle Down dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |