Triangular Bullet

Shortcodes

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

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

Customize Triangular Bullet Symbol

Customize ‣ symbol as you like and download Triangular 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 Triangular Bullet symbol in HTML, CSS, and JS?

Insert ‣ Triangular Bullet using HTML

1. Copy-paste Triangular Bullet directly:
<span>‣</span>
2. HTML Decimal Code:
<span>&#8227;</span>
3. Hexadecimal Code:
<span>&#x2023;</span>
Preview:

Add Triangular Bullet symbol with CSS

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

Triangular Bullet JavaScript Code

1. Direct Symbol:
document.querySelector('.triangular-bullet').textContent = '‣';
2. Unicode Escape for ‣:
document.querySelector('.triangular-bullet').textContent = '\u2023';
Preview: