| Nombre del símbolo | Superset Of |
| Versión Unicode | 1.1 |
| Unicode | U+2283 |
| Bloque Unicode | |
| Categoría general | Math Symbol (Sm) |
| Código CSS | \2283 |
| Código hexadecimal | 0x2283 |
| Código HTML | ⊃ |
| LaTeX | \supset |
| Símbolo | ⊃ |
| Codificación URL (porcentaje UTF-8) | %E2%8A%83 |
| Nombre oral / lector de pantalla | Superset Of |
| UTF-8 | E2 8A 83 |
| UTF-16 | 2283 |
| UTF-32 | 00002283 |
1\documentclass{article}2\usepackage{pifont}3\supset 4\end{document}Puedes escribir el símbolo superset of en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 8835 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "superset of", or use Unicode Hex Input with 2283.
Ctrl + Shift + U, type 2283, 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.superset-of::before { content: "\2283"; }1<span>⊃</span>La representación del símbolo Superset Of en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u2283' or String.fromCodePoint(0x2283) |
| Python | '\N{SUPERSET OF}' or chr(8835) |
| Rust | '\u{2283}' |
| C / C++ | UTF-8 source or wchar_t with U+2283 |
| Go | string(rune(0x2283)) |
| Ruby | "\u2283" |