Less-than Above Leftwards Arrow

Shortcodes

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

Unicode
U+2976
HTML Code
⥶
HEX Code
⥶
CSS Code
\2976
JS/JSON
\u2976
Unix/C/PHP/JAVA
0x2976
URL-encode
%E2%A5%B6

Customize Less-than Above Leftwards Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>⥶</span>
HTML Code:
<span>&#10614;</span>
HEX Code:
<span>&#x2976;</span>

Add with CSS

.less-than-above-leftwards-arrow::before {
  content: '\\2976';
}

Set it in JavaScript

document.querySelector('.less-than-above-leftwards-arrow').textContent = '⥶';
copied