Erase To The Left

Shortcodes

Copy useful codes for erase to the left symbol ⌫ to use in websites, apps, blogs, and docs.

Unicode
U+232B
HTML Code
⌫
HEX Code
⌫
CSS Code
\232B
JS/JSON
\u232B
Unix/C/PHP/JAVA
0x232B
URL-encode
%E2%8C%AB

Customize Erase To The Left

Customize ⌫, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Erase To The Left Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⌫</span>
HTML Code:
<span>&#9003;</span>
HEX Code:
<span>&#x232B;</span>

Add with CSS

.erase-to-the-left::before {
  content: '\\232B';
}

Set it in JavaScript

document.querySelector('.erase-to-the-left').textContent = '⌫';
copied