Symbol For Shift In

Shortcodes

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

Unicode
U+240F
HTML Code
␏
HEX Code
␏
CSS Code
\240F
JS/JSON
\u240F
Unix/C/PHP/JAVA
0x240F
URL-encode
%E2%90%8F

Customize Symbol For Shift In

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

  

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

Insert in HTML

1. Direct symbol:
<span>␏</span>
HTML Code:
<span>&#9231;</span>
HEX Code:
<span>&#x240F;</span>

Add with CSS

.symbol-for-shift-in::before {
  content: '\\240F';
}

Set it in JavaScript

document.querySelector('.symbol-for-shift-in').textContent = '␏';
copied