Hyphen Bullet

Shortcodes

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

Unicode
U+2043
HTML Code
⁃
HEX Code
⁃
CSS Code
\2043
JS/JSON
\u2043
Unix/C/PHP/JAVA
0x2043
URL-encode
%E2%81%83

Customize Hyphen Bullet

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

  

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

Insert in HTML

1. Direct symbol:
<span>⁃</span>
HTML Code:
<span>&#8259;</span>
HEX Code:
<span>&#x2043;</span>

Add with CSS

.hyphen-bullet::before {
  content: '\\2043';
}

Set it in JavaScript

document.querySelector('.hyphen-bullet').textContent = '⁃';
copied