| Symbol Name | Union |
| Unicode Version | 1.1 |
| Unicode | U+222A |
| Unicode block | |
| General category | Math Symbol (Sm) |
| CSS Code | \222A |
| Hex Code | 0x222A |
| HTML Code | ∪ |
| LaTeX | \cup |
| Symbol | ∪ |
| URL encode (UTF-8 percent) | %E2%88%AA |
| Spoken / screen reader name | Union |
| UTF-8 | E2 88 AA |
| UTF-16 | 222A |
| UTF-32 | 0000222A |
1\documentclass{article}2\usepackage{pifont}3\cup 4\end{document}You can type the union symbol on most modern devices with the help of following methods:
Alt + 8746 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "union", or use Unicode Hex Input with 222A.
Ctrl + Shift + U, type 222a, 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.union::before { content: "\222A"; }1<span>∪</span>Union symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u222A' or String.fromCodePoint(0x222A) |
| Python | '\N{UNION}' or chr(8746) |
| Rust | '\u{222A}' |
| C / C++ | UTF-8 source or wchar_t with U+222A |
| Go | string(rune(0x222A)) |
| Ruby | "\u222A" |