Up Arrow Through Circle

Shortcodes

Copy useful codes for up arrow through circle symbol ⦽ to use in websites, apps, blogs, and docs.

Unicode
U+29BD
HTML Code
⦽
HEX Code
⦽
CSS Code
\29BD
JS/JSON
\u29BD
Unix/C/PHP/JAVA
0x29BD
URL-encode
%E2%A6%BD

Customize Up Arrow Through Circle

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

  

How to use Up Arrow Through Circle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦽</span>
HTML Code:
<span>&#10685;</span>
HEX Code:
<span>&#x29BD;</span>

Add with CSS

.up-arrow-through-circle::before {
  content: '\\29BD';
}

Set it in JavaScript

document.querySelector('.up-arrow-through-circle').textContent = '⦽';
copied