| 記号名 | Cup On Black Square |
| Unicodeバージョン | 5.2 |
| Unicode | U+26FE |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \26FE |
| 16進コード | 0x26FE |
| HTMLコード | ⛾ |
| LaTeX | \text{CUPONBLACKSQUARE} |
| 記号 | ⛾ |
| URLエンコード(UTF-8パーセント) | %E2%9B%BE |
| 読み上げ名 / スクリーンリーダー | Cup On Black Square |
| UTF-8 | E2 9B BE |
| UTF-16 | 26FE |
| UTF-32 | 000026FE |
1\documentclass{article}2\usepackage{pifont}3\text{CUPONBLACKSQUARE}4\end{document}以下の方法でほとんどの最新デバイスでcup on black square記号を入力できます:
Alt + 9982 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "cup on black square", or use Unicode Hex Input with 26FE.
Ctrl + Shift + U, type 26fe, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with ornament and fleuron support.
1span.cup-on-black-square::before { content: "\26FE"; }1<span>⛾</span>各プログラミング言語におけるCup On Black Square記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u26FE' or String.fromCodePoint(9982) |
| Python | '\N{CUP ON BLACK SQUARE}' or chr(9982) |
| Rust | '\u{26FE}' |
| C / C++ | UTF-8 source or wchar_t with U+26FE |
| Go | string(rune(0x26FE)) |
| Ruby | "\u{26FE}" |