| 記号名 | Overlapping White Squares |
| Unicodeバージョン | 11.0 |
| Unicode | U+2BBA |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \2BBA |
| 16進コード | 0x2BBA |
| HTMLコード | ⮺ |
| LaTeX | \text{OVERLAPPINGWHITESQUARES} |
| 記号 | ⮺ |
| URLエンコード(UTF-8パーセント) | %E2%AE%BA |
| 読み上げ名 / スクリーンリーダー | Overlapping White Squares |
| UTF-8 | E2 AE BA |
| UTF-16 | 2BBA |
| UTF-32 | 00002BBA |
1\documentclass{article}2\usepackage{pifont}3\text{OVERLAPPINGWHITESQUARES}4\end{document}以下の方法でほとんどの最新デバイスでoverlapping white squares記号を入力できます:
Alt + 11194 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "overlapping white squares", or use Unicode Hex Input with 2BBA.
Ctrl + Shift + U, type 2bba, 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 geometric symbol support.
1span.overlapping-white-squares::before { content: "\2BBA"; }1<span>⮺</span>各プログラミング言語におけるOverlapping White Squares記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2BBA' or String.fromCodePoint(11194) |
| Python | '\N{OVERLAPPING WHITE SQUARES}' or chr(11194) |
| Rust | '\u{2BBA}' |
| C / C++ | UTF-8 source or wchar_t with U+2BBA |
| Go | string(rune(0x2BBA)) |
| Ruby | "\u{2BBA}" |