Three Leftwards Arrows

Shortcodes

Copy useful codes for three leftwards arrows symbol ⬱ to use in websites, apps, blogs, and docs.

Unicode
U+2B31
HTML Code
⬱
HEX Code
⬱
CSS Code
\2B31
JS/JSON
\u2B31
Unix/C/PHP/JAVA
0x2B31
URL-encode
%E2%AC%B1

Customize Three Leftwards Arrows

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

  

How to use Three Leftwards Arrows Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⬱</span>
HTML Code:
<span>&#11057;</span>
HEX Code:
<span>&#x2B31;</span>

Add with CSS

.three-leftwards-arrows::before {
  content: '\\2B31';
}

Set it in JavaScript

document.querySelector('.three-leftwards-arrows').textContent = '⬱';
copied