| Nome del simbolo | Curly Logical And |
| Versione Unicode | 1.1 |
| Unicode | U+22CF |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \22CF |
| Codice esadecimale | 0x22CF |
| Codice HTML | ⋏ |
| LaTeX | \mathrm{⋏} |
| Simbolo | ⋏ |
| Codifica URL (percentuale UTF-8) | %E2%8B%8F |
| Nome parlato / screen reader | Curly Logical And |
| UTF-8 | E2 8B 8F |
| UTF-16 | 22CF |
| UTF-32 | 000022CF |
1\documentclass{article}2\usepackage{pifont}3\mathrm{⋏}4\end{document}Puoi digitare il simbolo curly logical and sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8911 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "curly logical and", or use Unicode Hex Input with 22CF.
Ctrl + Shift + U, type 22cf, 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-and::before { content: "\22CF"; }1<span>⋏</span>La rappresentazione del simbolo Curly Logical And nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u22CF' or String.fromCodePoint(0x22CF) |
| Python | '\N{CURLY LOGICAL AND}' or chr(8911) |
| Rust | '\u{22CF}' |
| C / C++ | UTF-8 source or wchar_t with U+22CF |
| Go | string(rune(0x22CF)) |
| Ruby | "\u22CF" |