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