Inverse White Circle

Shortcodes

Copy useful codes for inverse white circle symbol ◙ to use in websites, apps, blogs, and docs.

Unicode
U+25D9
Alt Code
10
HTML Code
◙
HEX Code
◙
CSS Code
\25D9
JS/JSON
\u25D9
Unix/C/PHP/JAVA
0x25D9
URL-encode
%E2%97%99

Customize Inverse White Circle

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

  

How to use Inverse White Circle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>◙</span>
HTML Code:
<span>&#9689;</span>
HEX Code:
<span>&#x25D9;</span>

Add with CSS

.inverse-white-circle::before {
  content: '\\25D9';
}

Set it in JavaScript

document.querySelector('.inverse-white-circle').textContent = '◙';
copied