Black Circle With Down Arrow

Shortcodes

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

Unicode
U+29ED
HTML Code
⧭
HEX Code
⧭
CSS Code
\29ED
JS/JSON
\u29ED
Unix/C/PHP/JAVA
0x29ED
URL-encode
%E2%A7%AD

Customize Black Circle With Down Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>⧭</span>
HTML Code:
<span>&#10733;</span>
HEX Code:
<span>&#x29ED;</span>

Add with CSS

.black-circle-with-down-arrow::before {
  content: '\\29ED';
}

Set it in JavaScript

document.querySelector('.black-circle-with-down-arrow').textContent = '⧭';
copied