Dark Shade

Shortcodes

Copy and paste codes for Dark Shade symbol ▓ to use in your websites, apps, blogs, and more.

Unicode
U+2593
Alt Code
178
HTML Code
▓
HEX Code
▓
CSS Code
\2593
JS/JSON
\u2593
Unix/C/PHP/JAVA
0x2593
URL-encode
%E2%96%93
copied

Customize Dark Shade Symbol

Customize ▓ symbol as you like and download Dark Shade 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 Dark Shade symbol ▓ ?

Using Dark Shade Alt Code:

You can type the Dark Shade symbol ▓ using your keyboard by using the Alt Code for Dark Shade. 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 178 using the Numpad.
  3. Release the Alt key.

This will make the ▓ appear on your screen.

How to add Dark Shade symbol in HTML, CSS, and JS?

Insert ▓ Dark Shade using HTML

1. Copy-paste Dark Shade directly:
<span>▓</span>
2. HTML Decimal Code:
<span>&#9619;</span>
3. Hexadecimal Code:
<span>&#x2593;</span>
Preview:

Add Dark Shade symbol with CSS

.dark-shade::before {
    content: '\\2593';
}
Preview: Dark Shade

Dark Shade JavaScript Code

1. Direct Symbol:
document.querySelector('.dark-shade').textContent = '▓';
2. Unicode Escape for ▓:
document.querySelector('.dark-shade').textContent = '\u2593';
Preview: