Up Arrow Through Circle

Shortcodes

Copy and paste codes for Up Arrow Through Circle symbol ⦽ to use in your websites, apps, blogs, and more.

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

Customize Up Arrow Through Circle Symbol

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

Insert ⦽ Up Arrow Through Circle using HTML

1. Copy-paste Up Arrow Through Circle directly:
<span>⦽</span>
2. HTML Decimal Code:
<span>&#10685;</span>
3. Hexadecimal Code:
<span>&#x29BD;</span>
Preview:

Add Up Arrow Through Circle symbol with CSS

.up-arrow-through-circle::before {
    content: '\\29BD';
}
Preview: Up Arrow Through Circle

Up Arrow Through Circle JavaScript Code

1. Direct Symbol:
document.querySelector('.up-arrow-through-circle').textContent = '⦽';
2. Unicode Escape for ⦽:
document.querySelector('.up-arrow-through-circle').textContent = '\u29BD';
Preview: