| Nome del simbolo | Curly Logical Or |
| Versione Unicode | 1.1 |
| Unicode | U+22CE |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \22CE |
| Codice esadecimale | 0x22CE |
| Codice HTML | ⋎ |
| LaTeX | \mathrm{⋎} |
| Simbolo | ⋎ |
| Codifica URL (percentuale UTF-8) | %E2%8B%8E |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo curly logical or sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Curly Logical Or nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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" |