Leftwards Arrow Through Less-than

Shortcodes

Copy useful codes for leftwards arrow through less-than symbol ⥷ to use in websites, apps, blogs, and docs.

Unicode
U+2977
HTML Code
⥷
HEX Code
⥷
CSS Code
\2977
JS/JSON
\u2977
Unix/C/PHP/JAVA
0x2977
URL-encode
%E2%A5%B7

Customize Leftwards Arrow Through Less-than

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

  

How to use Leftwards Arrow Through Less-than Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⥷</span>
HTML Code:
<span>&#10615;</span>
HEX Code:
<span>&#x2977;</span>

Add with CSS

.leftwards-arrow-through-less-than::before {
  content: '\\2977';
}

Set it in JavaScript

document.querySelector('.leftwards-arrow-through-less-than').textContent = '⥷';
copied