Right Arrow With Small Circle

Shortcodes

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

Unicode
U+21F4
HTML Code
⇴
HEX Code
⇴
CSS Code
\21F4
JS/JSON
\u21F4
Unix/C/PHP/JAVA
0x21F4
URL-encode
%E2%87%B4
copied

Customize Right Arrow With Small Circle Symbol

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

Insert ⇴ Right Arrow With Small Circle using HTML

1. Copy-paste Right Arrow With Small Circle directly:
<span>⇴</span>
2. HTML Decimal Code:
<span>&#8692;</span>
3. Hexadecimal Code:
<span>&#x21F4;</span>
Preview:

Add Right Arrow With Small Circle symbol with CSS

.right-arrow-with-small-circle::before {
    content: '\\21F4';
}
Preview: Right Arrow With Small Circle

Right Arrow With Small Circle JavaScript Code

1. Direct Symbol:
document.querySelector('.right-arrow-with-small-circle').textContent = '⇴';
2. Unicode Escape for ⇴:
document.querySelector('.right-arrow-with-small-circle').textContent = '\u21F4';
Preview: