Tilde Operator Above Leftwards Arrow

Shortcodes

Copy useful codes for tilde operator above leftwards arrow symbol ⭉ to use in websites, apps, blogs, and docs.

Unicode
U+2B49
HTML Code
⭉
HEX Code
⭉
CSS Code
\2B49
JS/JSON
\u2B49
Unix/C/PHP/JAVA
0x2B49
URL-encode
%E2%AD%89

Customize Tilde Operator Above Leftwards Arrow

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

  

How to use Tilde Operator Above Leftwards Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⭉</span>
HTML Code:
<span>&#11081;</span>
HEX Code:
<span>&#x2B49;</span>

Add with CSS

.tilde-operator-above-leftwards-arrow::before {
  content: '\\2B49';
}

Set it in JavaScript

document.querySelector('.tilde-operator-above-leftwards-arrow').textContent = '⭉';
copied