Upwards Two-headed Arrow From Small Circle

Shortcodes

Copy useful codes for upwards two-headed arrow from small circle symbol ⥉ to use in websites, apps, blogs, and docs.

Unicode
U+2949
HTML Code
⥉
HEX Code
⥉
CSS Code
\2949
JS/JSON
\u2949
Unix/C/PHP/JAVA
0x2949
URL-encode
%E2%A5%89

Customize Upwards Two-headed Arrow From Small Circle

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

  

How to use Upwards Two-headed Arrow From Small Circle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⥉</span>
HTML Code:
<span>&#10569;</span>
HEX Code:
<span>&#x2949;</span>

Add with CSS

.upwards-two-headed-arrow-from-small-circle::before {
  content: '\\2949';
}

Set it in JavaScript

document.querySelector('.upwards-two-headed-arrow-from-small-circle').textContent = '⥉';
copied