| Symbolname | N-Ary Summation |
| Unicode-Version | 1.1 |
| Unicode | U+2211 |
| Unicode-Block | |
| Allgemeine Kategorie | Math Symbol (Sm) |
| CSS-Code |
| UTF-8 | E2 88 91 |
| UTF-16 | 2211 |
| UTF-32 | 00002211 |
1\documentclass{article}2\usepackage{pifont}3\sum4\end{document}Sie können das Symbol n-ary summation auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
Alt + 8721 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "summation", or enable Unicode Hex Input.
Ctrl + Shift + U, then type 2211 and Enter (layout-dependent).
Long-press related math keys or paste from the symbol picker.
Paste from this page or open your keyboard's special-character and math panels.
1span.s::before { content: "\2211"; }1<span>∑</span>Die Darstellung des Symbols N-Ary Summation in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| JavaScript / TypeScript | '\u2211' or String.fromCodePoint(0x2211) |
| Python | '\N{N-ARY SUMMATION}' or chr(8721) |
| Rust | '\u{2211}' |
| C / C++ | UTF-8 source or wchar_t with U+2211 (compiler-dependent) |
| Go | string(rune(0x2211)) or "\u2211" in a rune literal |
| Ruby | "\u2211" in a string or ? + 8721.chr (U+2211) |
\2211 |
| Hexadezimalcode | 0x2211 |
| HTML-Code | ∑ |
| LaTeX | \sum |
| Symbol | ∑ |
| URL-Kodierung (UTF-8-Prozent) | %E2%88%91 |
| Discord-/Slack-Kurzcode | :sum: |
| Ansagename (Screenreader) | N-Ary Summation |