Square With Contoured Outline

Shortcodes

Copy useful codes for square with contoured outline symbol ⧠ to use in websites, apps, blogs, and docs.

Unicode
U+29E0
HTML Code
⧠
HEX Code
⧠
CSS Code
\29E0
JS/JSON
\u29E0
Unix/C/PHP/JAVA
0x29E0
URL-encode
%E2%A7%A0

Customize Square With Contoured Outline

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

  

How to use Square With Contoured Outline Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧠</span>
HTML Code:
<span>&#10720;</span>
HEX Code:
<span>&#x29E0;</span>

Add with CSS

.square-with-contoured-outline::before {
  content: '\\29E0';
}

Set it in JavaScript

document.querySelector('.square-with-contoured-outline').textContent = '⧠';
copied