Large Left Triangle Operator

Shortcodes

Copy useful codes for large left triangle operator symbol ⨞ to use in websites, apps, blogs, and docs.

Unicode
U+2A1E
HTML Code
⨞
HEX Code
⨞
CSS Code
\2A1E
JS/JSON
\u2A1E
Unix/C/PHP/JAVA
0x2A1E
URL-encode
%E2%A8%9E

Customize Large Left Triangle Operator

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

  

How to use Large Left Triangle Operator Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨞</span>
HTML Code:
<span>&#10782;</span>
HEX Code:
<span>&#x2A1E;</span>

Add with CSS

.large-left-triangle-operator::before {
  content: '\\2A1E';
}

Set it in JavaScript

document.querySelector('.large-left-triangle-operator').textContent = '⨞';
copied