| Nome del simbolo | N-Ary Coproduct |
| Versione Unicode | 1.1 |
| Unicode | U+2210 |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \2210 |
| Codice esadecimale | 0x2210 |
| Codice HTML | ∐ |
| LaTeX | \coprod |
| Simbolo | ∐ |
| Codifica URL (percentuale UTF-8) | %E2%88%90 |
| Nome parlato / screen reader | N-Ary Coproduct |
| UTF-8 | E2 88 90 |
| UTF-16 | 2210 |
| UTF-32 | 00002210 |
1\documentclass{article}2\usepackage{pifont}3\coprod4\end{document}Puoi digitare il simbolo n-ary coproduct sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8720 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "coproduct", or use Unicode Hex Input.
Ctrl + Shift + U, type 2210, then Enter (layout-dependent).
Paste from this page or use a math keyboard.
Paste from this page or use extended math symbol panels.
1span.coprod::before { content: "\2210"; }1<span>∐</span>La rappresentazione del simbolo N-Ary Coproduct nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u2210' or String.fromCodePoint(0x2210) |
| Python | '\N{N-ARY COPRODUCT}' or chr(8720) |
| Rust | '\u{2210}' |
| C / C++ | UTF-8 source or wchar_t with U+2210 |
| Go | string(rune(0x2210)) |
| Ruby | "\u2210" |