| 記号名 | Erase To The Right |
| Unicodeバージョン | 1.1 |
| Unicode | U+2326 |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \2326 |
| 16進コード | 0x2326 |
| HTMLコード | ⌦ |
| LaTeX | \text{ERASETOTHERIGHT} |
| 記号 | ⌦ |
| URLエンコード(UTF-8パーセント) | %E2%8C%A6 |
| 読み上げ名 / スクリーンリーダー | Erase To The Right |
| UTF-8 | E2 8C A6 |
| UTF-16 | 2326 |
| UTF-32 | 00002326 |
1\documentclass{article}2\usepackage{pifont}3\text{ERASETOTHERIGHT}4\end{document}以下の方法でほとんどの最新デバイスでerase to the right記号を入力できます:
Alt + 8998 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "erase to the right", or use Unicode Hex Input with 2326.
Ctrl + Shift + U, type 2326, 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 technical symbol support.
1span.erase-to-the-right::before { content: "\2326"; }1<span>⌦</span>各プログラミング言語におけるErase To The Right記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2326' or String.fromCodePoint(8998) |
| Python | '\N{ERASE TO THE RIGHT}' or chr(8998) |
| Rust | '\u{2326}' |
| C / C++ | UTF-8 source or wchar_t with U+2326 |
| Go | string(rune(0x2326)) |
| Ruby | "\u{2326}" |