Clear Screen Symbol

Shortcodes

Copy useful codes for clear screen symbol ⎚ to use in websites, apps, blogs, and docs.

Unicode
U+239A
HTML Code
⎚
HEX Code
⎚
CSS Code
\239A
JS/JSON
\u239A
Unix/C/PHP/JAVA
0x239A
URL-encode
%E2%8E%9A

Customize Clear Screen Symbol

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

  

How to use Clear Screen Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⎚</span>
HTML Code:
<span>&#9114;</span>
HEX Code:
<span>&#x239A;</span>

Add with CSS

.clear-screen-symbol::before {
  content: '\\239A';
}

Set it in JavaScript

document.querySelector('.clear-screen-symbol').textContent = '⎚';
copied