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