Square Four Corners

Shortcodes

Copy useful codes for square four corners symbol ⛶ to use in websites, apps, blogs, and docs.

Unicode
U+26F6
HTML Code
⛶
HEX Code
⛶
CSS Code
\26F6
JS/JSON
\u26F6
Unix/C/PHP/JAVA
0x26F6
URL-encode
%E2%9B%B6

Customize Square Four Corners

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

  

How to use Square Four Corners Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⛶</span>
HTML Code:
<span>&#9974;</span>
HEX Code:
<span>&#x26F6;</span>

Add with CSS

.square-four-corners::before {
  content: '\\26F6';
}

Set it in JavaScript

document.querySelector('.square-four-corners').textContent = '⛶';
copied