Right Arrow With Small Circle

Shortcodes

Copy useful codes for right arrow with small circle symbol ⇴ to use in websites, apps, blogs, and docs.

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

Customize Right Arrow With Small Circle

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

  

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

Insert in HTML

1. Direct symbol:
<span>⇴</span>
HTML Code:
<span>&#8692;</span>
HEX Code:
<span>&#x21F4;</span>

Add with CSS

.right-arrow-with-small-circle::before {
  content: '\\21F4';
}

Set it in JavaScript

document.querySelector('.right-arrow-with-small-circle').textContent = '⇴';
copied