| Symbol Name | Circled Triangle Down |
| Unicode Version | 3.0 |
| Unicode | U+238A |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \238A |
| Hex Code | 0x238A |
| HTML Code | ⎊ |
| LaTeX | \text{CIRCLEDTRIANGLEDOWN} |
| Symbol | ⎊ |
| URL encode (UTF-8 percent) | %E2%8E%8A |
| Spoken / screen reader name | 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}You can type the circled triangle down symbol on most modern devices with the help of following methods:
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>Circled Triangle Down symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |