Inverse Bullet

Shortcodes

Copy useful codes for inverse bullet symbol ◘ to use in websites, apps, blogs, and docs.

Unicode
U+25D8
Alt Code
8
HTML Code
◘
HEX Code
◘
CSS Code
\25D8
JS/JSON
\u25D8
Unix/C/PHP/JAVA
0x25D8
URL-encode
%E2%97%98

Customize Inverse Bullet

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

  

How to use Inverse Bullet Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>◘</span>
HTML Code:
<span>&#9688;</span>
HEX Code:
<span>&#x25D8;</span>

Add with CSS

.inverse-bullet::before {
  content: '\\25D8';
}

Set it in JavaScript

document.querySelector('.inverse-bullet').textContent = '◘';
copied