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