Erase To The Right

Shortcodes

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

Unicode
U+2326
HTML Code
⌦
HEX Code
⌦
CSS Code
\2326
JS/JSON
\u2326
Unix/C/PHP/JAVA
0x2326
URL-encode
%E2%8C%A6
copied

Customize Erase To The Right Symbol

Customize ⌦ symbol as you like and download Erase To The Right 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 Right symbol in HTML, CSS, and JS?

Insert ⌦ Erase To The Right using HTML

1. Copy-paste Erase To The Right directly:
<span>⌦</span>
2. HTML Decimal Code:
<span>&#8998;</span>
3. Hexadecimal Code:
<span>&#x2326;</span>
Preview:

Add Erase To The Right symbol with CSS

.erase-to-the-right::before {
    content: '\\2326';
}
Preview: Erase To The Right

Erase To The Right JavaScript Code

1. Direct Symbol:
document.querySelector('.erase-to-the-right').textContent = '⌦';
2. Unicode Escape for ⌦:
document.querySelector('.erase-to-the-right').textContent = '\u2326';
Preview: