Erase To The Left

Shortcodes

Copy and paste codes for Erase To The Left symbol ⌫ to use in your websites, apps, blogs, and more.

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

Customize Erase To The Left Symbol

Customize ⌫ symbol as you like and download Erase To The Left as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Erase To The Left symbol in HTML, CSS, and JS?

Insert ⌫ Erase To The Left using HTML

1. Copy-paste Erase To The Left directly:
<span>⌫</span>
2. HTML Decimal Code:
<span>&#9003;</span>
3. Hexadecimal Code:
<span>&#x232B;</span>
Preview:

Add Erase To The Left symbol with CSS

.erase-to-the-left::before {
    content: '\\232B';
}
Preview: Erase To The Left

Erase To The Left JavaScript Code

1. Direct Symbol:
document.querySelector('.erase-to-the-left').textContent = '⌫';
2. Unicode Escape for ⌫:
document.querySelector('.erase-to-the-left').textContent = '\u232B';
Preview: