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