Wave Arrow Pointing Directly Left

⬿

Shortcodes

Copy useful codes for wave arrow pointing directly left symbol ⬿ to use in websites, apps, blogs, and docs.

Unicode
U+2B3F
HTML Code
⬿
HEX Code
⬿
CSS Code
\2B3F
JS/JSON
\u2B3F
Unix/C/PHP/JAVA
0x2B3F
URL-encode
%E2%AC%BF

Customize Wave Arrow Pointing Directly Left

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

⬿
  

How to use Wave Arrow Pointing Directly Left Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⬿</span>
HTML Code:
<span>&#11071;</span>
HEX Code:
<span>&#x2B3F;</span>

Add with CSS

.wave-arrow-pointing-directly-left::before {
  content: '\\2B3F';
}

Set it in JavaScript

document.querySelector('.wave-arrow-pointing-directly-left').textContent = '⬿';
copied