| Symbol Name | Curly Logical Or |
| Unicode Version | 1.1 |
| Unicode | U+22CE |
| Unicode block | |
| General category | Math Symbol (Sm) |
| CSS Code | \22CE |
| Hex Code | 0x22CE |
| HTML Code | ⋎ |
| LaTeX | \mathrm{⋎} |
| Symbol | ⋎ |
| URL encode (UTF-8 percent) | %E2%8B%8E |
| Spoken / screen reader name | Curly Logical Or |
| UTF-8 | E2 8B 8E |
| UTF-16 | 22CE |
| UTF-32 | 000022CE |
1\documentclass{article}2\usepackage{pifont}3\mathrm{⋎}4\end{document}You can type the curly logical or symbol on most modern devices with the help of following methods:
Alt + 8910 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "curly logical or", or use Unicode Hex Input with 22CE.
Ctrl + Shift + U, type 22ce, 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 math symbol support.
1span.curly-logical-or::before { content: "\22CE"; }1<span>⋎</span>Curly Logical Or symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u22CE' or String.fromCodePoint(0x22CE) |
| Python | '\N{CURLY LOGICAL OR}' or chr(8910) |
| Rust | '\u{22CE}' |
| C / C++ | UTF-8 source or wchar_t with U+22CE |
| Go | string(rune(0x22CE)) |
| Ruby | "\u22CE" |