Bullet Operator

Shortcodes

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

Unicode
U+2219
Alt Code
249
HTML Code
∙
HEX Code
∙
CSS Code
\2219
JS/JSON
\u2219
Unix/C/PHP/JAVA
0x2219
URL-encode
%E2%88%99

Customize Bullet Operator

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

  

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

Insert in HTML

1. Direct symbol:
<span>∙</span>
HTML Code:
<span>&#8729;</span>
HEX Code:
<span>&#x2219;</span>

Add with CSS

.bullet-operator::before {
  content: '\\2219';
}

Set it in JavaScript

document.querySelector('.bullet-operator').textContent = '∙';
copied