Bullet

Shortcodes

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

Unicode
U+2022
Alt Code
7
HTML Code
•
HTML Entity
•
HEX Code
•
CSS Code
\2022
JS/JSON
\u2022
Unix/C/PHP/JAVA
0x2022
URL-encode
%E2%80%A2

Customize Bullet

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

  

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

Insert in HTML

1. Direct symbol:
<span>•</span>
HTML Code:
<span>&#8226;</span>
HTML Entity:
<span>&bull;</span>
HEX Code:
<span>&#x2022;</span>

Add with CSS

.bullet::before {
  content: '\\2022';
}

Set it in JavaScript

document.querySelector('.bullet').textContent = '•';
copied