| 記号名 | Square With Contoured Outline |
| Unicodeバージョン | 3.2 |
| Unicode | U+29E0 |
| Unicodeブロック | |
| 一般カテゴリ | Math Symbol (Sm) |
| CSSコード | \29E0 |
| 16進コード | 0x29E0 |
| HTMLコード | ⧠ |
| LaTeX | \text{SQUAREWITHCONTOUREDOUTLINE} |
| 記号 | ⧠ |
| URLエンコード(UTF-8パーセント) | %E2%A7%A0 |
| 読み上げ名 / スクリーンリーダー | Square With Contoured Outline |
| UTF-8 | E2 A7 A0 |
| UTF-16 | 29E0 |
| UTF-32 | 000029E0 |
1\documentclass{article}2\usepackage{pifont}3\text{SQUAREWITHCONTOUREDOUTLINE}4\end{document}以下の方法でほとんどの最新デバイスでsquare with contoured outline記号を入力できます:
Alt + 10720 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "square with contoured outline", or use Unicode Hex Input with 29E0.
Ctrl + Shift + U, type 29e0, 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-with-contoured-outline::before { content: "\29E0"; }1<span>⧠</span>各プログラミング言語におけるSquare With Contoured Outline記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u29E0' or String.fromCodePoint(10720) |
| Python | '\N{SQUARE WITH CONTOURED OUTLINE}' or chr(10720) |
| Rust | '\u{29E0}' |
| C / C++ | UTF-8 source or wchar_t with U+29E0 |
| Go | string(rune(0x29E0)) |
| Ruby | "\u{29E0}" |