White Medium Small Square

Shortcodes

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

Unicode
U+25FD
HTML Code
◽
HEX Code
◽
CSS Code
\25FD
JS/JSON
\u25FD
Unix/C/PHP/JAVA
0x25FD
URL-encode
%E2%97%BD

Customize White Medium Small Square

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

  

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

Insert in HTML

1. Direct symbol:
<span>◽</span>
HTML Code:
<span>&#9725;</span>
HEX Code:
<span>&#x25FD;</span>

Add with CSS

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

Set it in JavaScript

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