Left Right Arrow Through Small Circle

Shortcodes

Copy useful codes for left right arrow through small circle symbol ⥈ to use in websites, apps, blogs, and docs.

Unicode
U+2948
HTML Code
⥈
HEX Code
⥈
CSS Code
\2948
JS/JSON
\u2948
Unix/C/PHP/JAVA
0x2948
URL-encode
%E2%A5%88

Customize Left Right Arrow Through Small Circle

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

  

How to use Left Right Arrow Through Small Circle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⥈</span>
HTML Code:
<span>&#10568;</span>
HEX Code:
<span>&#x2948;</span>

Add with CSS

.left-right-arrow-through-small-circle::before {
  content: '\\2948';
}

Set it in JavaScript

document.querySelector('.left-right-arrow-through-small-circle').textContent = '⥈';
copied