Squared Square

Shortcodes

Copy useful codes for squared square symbol ⧈ to use in websites, apps, blogs, and docs.

Unicode
U+29C8
HTML Code
⧈
HEX Code
⧈
CSS Code
\29C8
JS/JSON
\u29C8
Unix/C/PHP/JAVA
0x29C8
URL-encode
%E2%A7%88

Customize Squared Square

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

  

How to use Squared Square Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧈</span>
HTML Code:
<span>&#10696;</span>
HEX Code:
<span>&#x29C8;</span>

Add with CSS

.squared-square::before {
  content: '\\29C8';
}

Set it in JavaScript

document.querySelector('.squared-square').textContent = '⧈';
copied