White Circle With Down Arrow

Shortcodes

Copy useful codes for white circle with down arrow symbol ⧬ to use in websites, apps, blogs, and docs.

Unicode
U+29EC
HTML Code
⧬
HEX Code
⧬
CSS Code
\29EC
JS/JSON
\u29EC
Unix/C/PHP/JAVA
0x29EC
URL-encode
%E2%A7%AC

Customize White Circle With Down Arrow

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

  

How to use White Circle With Down Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧬</span>
HTML Code:
<span>&#10732;</span>
HEX Code:
<span>&#x29EC;</span>

Add with CSS

.white-circle-with-down-arrow::before {
  content: '\\29EC';
}

Set it in JavaScript

document.querySelector('.white-circle-with-down-arrow').textContent = '⧬';
copied