Light Shade

Shortcodes

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

Unicode
U+2591
Alt Code
176
HTML Code
░
HEX Code
░
CSS Code
\2591
JS/JSON
\u2591
Unix/C/PHP/JAVA
0x2591
URL-encode
%E2%96%91
copied

Customize Light Shade Symbol

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

Using Light Shade Alt Code:

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

This will make the ░ appear on your screen.

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

Insert ░ Light Shade using HTML

1. Copy-paste Light Shade directly:
<span>░</span>
2. HTML Decimal Code:
<span>&#9617;</span>
3. Hexadecimal Code:
<span>&#x2591;</span>
Preview:

Add Light Shade symbol with CSS

.light-shade::before {
    content: '\\2591';
}
Preview: Light Shade

Light Shade JavaScript Code

1. Direct Symbol:
document.querySelector('.light-shade').textContent = '░';
2. Unicode Escape for ░:
document.querySelector('.light-shade').textContent = '\u2591';
Preview: