Left Right Arrow Through Small Circle

Shortcodes

Copy and paste codes for Left Right Arrow Through Small Circle symbol ⥈ to use in your websites, apps, blogs, and more.

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

Customize Left Right Arrow Through Small Circle Symbol

Customize ⥈ symbol as you like and download Left Right Arrow Through Small Circle 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 Left Right Arrow Through Small Circle symbol in HTML, CSS, and JS?

Insert ⥈ Left Right Arrow Through Small Circle using HTML

1. Copy-paste Left Right Arrow Through Small Circle directly:
<span>⥈</span>
2. HTML Decimal Code:
<span>&#10568;</span>
3. Hexadecimal Code:
<span>&#x2948;</span>
Preview:

Add Left Right Arrow Through Small Circle symbol with CSS

.left-right-arrow-through-small-circle::before {
    content: '\\2948';
}
Preview: Left Right Arrow Through Small Circle

Left Right Arrow Through Small Circle JavaScript Code

1. Direct Symbol:
document.querySelector('.left-right-arrow-through-small-circle').textContent = '⥈';
2. Unicode Escape for ⥈:
document.querySelector('.left-right-arrow-through-small-circle').textContent = '\u2948';
Preview: