Large Left Triangle Operator

Shortcodes

Copy and paste codes for Large Left Triangle Operator symbol ⨞ to use in your websites, apps, blogs, and more.

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

Customize Large Left Triangle Operator Symbol

Customize ⨞ symbol as you like and download Large Left Triangle Operator as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Large Left Triangle Operator symbol in HTML, CSS, and JS?

Insert ⨞ Large Left Triangle Operator using HTML

1. Copy-paste Large Left Triangle Operator directly:
<span>⨞</span>
2. HTML Decimal Code:
<span>&#10782;</span>
3. Hexadecimal Code:
<span>&#x2A1E;</span>
Preview:

Add Large Left Triangle Operator symbol with CSS

.large-left-triangle-operator::before {
    content: '\\2A1E';
}
Preview: Large Left Triangle Operator

Large Left Triangle Operator JavaScript Code

1. Direct Symbol:
document.querySelector('.large-left-triangle-operator').textContent = '⨞';
2. Unicode Escape for ⨞:
document.querySelector('.large-left-triangle-operator').textContent = '\u2A1E';
Preview: