| Nombre del símbolo | Curly Logical Or |
| Versión Unicode | 1.1 |
| Unicode | U+22CE |
| Bloque Unicode | |
| Categoría general | Math Symbol (Sm) |
| Código CSS | \22CE |
| Código hexadecimal | 0x22CE |
| Código HTML | ⋎ |
| LaTeX | \mathrm{⋎} |
| Símbolo | ⋎ |
| Codificación URL (porcentaje UTF-8) | %E2%8B%8E |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo curly logical or en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Curly Logical Or en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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" |