Medium Shade

Shortcodes

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

Unicode
U+2592
Alt Code
177
HTML Code
▒
HEX Code
▒
CSS Code
\2592
JS/JSON
\u2592
Unix/C/PHP/JAVA
0x2592
URL-encode
%E2%96%92
copied

Customize Medium Shade Symbol

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

Using Medium Shade Alt Code:

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

This will make the ▒ appear on your screen.

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

Insert ▒ Medium Shade using HTML

1. Copy-paste Medium Shade directly:
<span>▒</span>
2. HTML Decimal Code:
<span>&#9618;</span>
3. Hexadecimal Code:
<span>&#x2592;</span>
Preview:

Add Medium Shade symbol with CSS

.medium-shade::before {
    content: '\\2592';
}
Preview: Medium Shade

Medium Shade JavaScript Code

1. Direct Symbol:
document.querySelector('.medium-shade').textContent = '▒';
2. Unicode Escape for ▒:
document.querySelector('.medium-shade').textContent = '\u2592';
Preview: