White Medium Square

Shortcodes

Copy useful codes for white medium square symbol ◻ to use in websites, apps, blogs, and docs.

Unicode
U+25FB
HTML Code
◻
HEX Code
◻
CSS Code
\25FB
JS/JSON
\u25FB
Unix/C/PHP/JAVA
0x25FB
URL-encode
%E2%97%BB

Customize White Medium Square

Customize ◻, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use White Medium Square Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>◻</span>
HTML Code:
<span>&#9723;</span>
HEX Code:
<span>&#x25FB;</span>

Add with CSS

.white-medium-square::before {
  content: '\\25FB';
}

Set it in JavaScript

document.querySelector('.white-medium-square').textContent = '◻';
copied