| 記号名 | White Diamond In Square |
| Unicodeバージョン | 5.2 |
| Unicode | U+26CB |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \26CB |
| 16進コード | 0x26CB |
| HTMLコード | ⛋ |
| LaTeX | \text{WHITEDIAMONDINSQUARE} |
| 記号 | ⛋ |
| URLエンコード(UTF-8パーセント) | %E2%9B%8B |
| 読み上げ名 / スクリーンリーダー | White Diamond In Square |
| UTF-8 | E2 9B 8B |
| UTF-16 | 26CB |
| UTF-32 | 000026CB |
1\documentclass{article}2\usepackage{pifont}3\text{WHITEDIAMONDINSQUARE}4\end{document}以下の方法でほとんどの最新デバイスでwhite diamond in square記号を入力できます:
Alt + 9931 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "white diamond in square", or use Unicode Hex Input with 26CB.
Ctrl + Shift + U, type 26cb, 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.white-diamond-in-square::before { content: "\26CB"; }1<span>⛋</span>各プログラミング言語におけるWhite Diamond In Square記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u26CB' or String.fromCodePoint(9931) |
| Python | '\N{WHITE DIAMOND IN SQUARE}' or chr(9931) |
| Rust | '\u{26CB}' |
| C / C++ | UTF-8 source or wchar_t with U+26CB |
| Go | string(rune(0x26CB)) |
| Ruby | "\u{26CB}" |