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