| Symboolnaam | Circled Dash |
| Unicode-versie | 1.1 |
| Unicode | U+229D |
| Unicode-blok | |
| Algemene categorie | Math Symbol (Sm) |
| CSS-code | \229D |
| Hexadecimale code | 0x229D |
| HTML-code | ⊝ |
| LaTeX | \text{CIRCLEDDASH} |
| Symbool | ⊝ |
| URL-codering (UTF-8 procent) | %E2%8A%9D |
| Uitgesproken naam / schermlezer | 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}Je kunt het circled dash-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Circled Dash-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |