| 記号名 | N-Ary Coproduct |
| Unicodeバージョン | 1.1 |
| Unicode | U+2210 |
| Unicodeブロック | |
| 一般カテゴリ | Math Symbol (Sm) |
| CSSコード | \2210 |
| 16進コード | 0x2210 |
| HTMLコード | ∐ |
| LaTeX | \coprod |
| 記号 | ∐ |
| URLエンコード(UTF-8パーセント) | %E2%88%90 |
| 読み上げ名 / スクリーンリーダー | N-Ary Coproduct |
| UTF-8 | E2 88 90 |
| UTF-16 | 2210 |
| UTF-32 | 00002210 |
1\documentclass{article}2\usepackage{pifont}3\coprod4\end{document}以下の方法でほとんどの最新デバイスでn-ary coproduct記号を入力できます:
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>各プログラミング言語におけるN-Ary Coproduct記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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" |