Symbol For Shift Out

Shortcodes

Copy useful codes for symbol for shift out ␎ to use in websites, apps, blogs, and docs.

Unicode
U+240E
HTML Code
␎
HEX Code
␎
CSS Code
\240E
JS/JSON
\u240E
Unix/C/PHP/JAVA
0x240E
URL-encode
%E2%90%8E

Customize Symbol For Shift Out

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

  

How to use Symbol For Shift Out in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>␎</span>
HTML Code:
<span>&#9230;</span>
HEX Code:
<span>&#x240E;</span>

Add with CSS

.symbol-for-shift-out::before {
  content: '\\240E';
}

Set it in JavaScript

document.querySelector('.symbol-for-shift-out').textContent = '␎';
copied