Erase To The Right

Shortcodes

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

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

Customize Erase To The Right

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

  

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

Insert in HTML

1. Direct symbol:
<span>⌦</span>
HTML Code:
<span>&#8998;</span>
HEX Code:
<span>&#x2326;</span>

Add with CSS

.erase-to-the-right::before {
  content: '\\2326';
}

Set it in JavaScript

document.querySelector('.erase-to-the-right').textContent = '⌦';
copied