Triangular Bullet

Shortcodes

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

Unicode
U+2023
HTML Code
‣
HEX Code
‣
CSS Code
\2023
JS/JSON
\u2023
Unix/C/PHP/JAVA
0x2023
URL-encode
%E2%80%A3

Customize Triangular Bullet

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

  

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

Insert in HTML

1. Direct symbol:
<span>‣</span>
HTML Code:
<span>&#8227;</span>
HEX Code:
<span>&#x2023;</span>

Add with CSS

.triangular-bullet::before {
  content: '\\2023';
}

Set it in JavaScript

document.querySelector('.triangular-bullet').textContent = '‣';
copied