| Symboolnaam | Multiset Union |
| Unicode-versie | 1.1 |
| Unicode | U+228E |
| Unicode-blok | |
| Algemene categorie | Math Symbol (Sm) |
| CSS-code | \228E |
| Hexadecimale code | 0x228E |
| HTML-code | ⊎ |
| LaTeX | \mathrm{⊎} |
| Symbool | ⊎ |
| URL-codering (UTF-8 procent) | %E2%8A%8E |
| Uitgesproken naam / schermlezer | Multiset Union |
| UTF-8 | E2 8A 8E |
| UTF-16 | 228E |
| UTF-32 | 0000228E |
1\documentclass{article}2\usepackage{pifont}3\mathrm{⊎}4\end{document}Je kunt het multiset union-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 8846 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "multiset union", or use Unicode Hex Input with 228E.
Ctrl + Shift + U, type 228e, 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.multiset-union::before { content: "\228E"; }1<span>⊎</span>De weergave van het Multiset Union-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u228E' or String.fromCodePoint(0x228E) |
| Python | '\N{MULTISET UNION}' or chr(8846) |
| Rust | '\u{228E}' |
| C / C++ | UTF-8 source or wchar_t with U+228E |
| Go | string(rune(0x228E)) |
| Ruby | "\u228E" |