Hyphen Bullet

Shortcodes

Copy and paste codes for Hyphen Bullet symbol ⁃ to use in your websites, apps, blogs, and more.

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

Customize Hyphen Bullet Symbol

Customize ⁃ symbol as you like and download Hyphen Bullet as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Hyphen Bullet symbol in HTML, CSS, and JS?

Insert ⁃ Hyphen Bullet using HTML

1. Copy-paste Hyphen Bullet directly:
<span>⁃</span>
2. HTML Decimal Code:
<span>&#8259;</span>
3. Hexadecimal Code:
<span>&#x2043;</span>
Preview:

Add Hyphen Bullet symbol with CSS

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

Hyphen Bullet JavaScript Code

1. Direct Symbol:
document.querySelector('.hyphen-bullet').textContent = '⁃';
2. Unicode Escape for ⁃:
document.querySelector('.hyphen-bullet').textContent = '\u2043';
Preview: