Black Down-pointing Triangle

Shortcodes

Copy and paste codes for Black Down-pointing Triangle symbol ▼ to use in your websites, apps, blogs, and more.

Unicode
U+25BC
Alt Code
31
HTML Code
▼
HEX Code
▼
CSS Code
\25BC
JS/JSON
\u25BC
Unix/C/PHP/JAVA
0x25BC
URL-encode
%E2%96%BC
copied

Customize Black Down-pointing Triangle Symbol

Customize ▼ symbol as you like and download Black Down-pointing Triangle 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 type Black Down-pointing Triangle symbol ▼ ?

Using Black Down-pointing Triangle Alt Code:

You can type the Black Down-pointing Triangle symbol ▼ using your keyboard by using the Alt Code for Black Down-pointing Triangle. Before you begin, ensure that your Num Lock is turned on, and use the Numpad to type the code. Then, follow these simple steps:

  1. Hold down the Alt key on your keyboard.
  2. Type the number 31 using the Numpad.
  3. Release the Alt key.

This will make the ▼ appear on your screen.

How to add Black Down-pointing Triangle symbol in HTML, CSS, and JS?

Insert ▼ Black Down-pointing Triangle using HTML

1. Copy-paste Black Down-pointing Triangle directly:
<span>▼</span>
2. HTML Decimal Code:
<span>&#9660;</span>
3. Hexadecimal Code:
<span>&#x25BC;</span>
Preview:

Add Black Down-pointing Triangle symbol with CSS

.black-down-pointing-triangle::before {
    content: '\\25BC';
}
Preview: Black Down-pointing Triangle

Black Down-pointing Triangle JavaScript Code

1. Direct Symbol:
document.querySelector('.black-down-pointing-triangle').textContent = '▼';
2. Unicode Escape for ▼:
document.querySelector('.black-down-pointing-triangle').textContent = '\u25BC';
Preview: