| Symbol Name | Circled Dash |
| Unicode Version | 1.1 |
| Unicode | U+229D |
| Unicode block | |
| General category | Math Symbol (Sm) |
| CSS Code | \229D |
| Hex Code | 0x229D |
| HTML Code | ⊝ |
| LaTeX | \text{CIRCLEDDASH} |
| Symbol | ⊝ |
| URL encode (UTF-8 percent) | %E2%8A%9D |
| Spoken / screen reader name | Circled Dash |
| UTF-8 | E2 8A 9D |
| UTF-16 | 229D |
| UTF-32 | 0000229D |
1\documentclass{article}2\usepackage{pifont}3\text{CIRCLEDDASH}4\end{document}You can type the circled dash symbol on most modern devices with the help of following methods:
Alt + 8861 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "circled dash", or use Unicode Hex Input with 229D.
Ctrl + Shift + U, type 229d, 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-dash::before { content: "\229D"; }1<span>⊝</span>Circled Dash symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u229D' or String.fromCodePoint(8861) |
| Python | '\N{CIRCLED DASH}' or chr(8861) |
| Rust | '\u{229D}' |
| C / C++ | UTF-8 source or wchar_t with U+229D |
| Go | string(rune(0x229D)) |
| Ruby | "\u{229D}" |