Square Image Of

Shortcodes

Copy useful codes for square image of symbol ⊏ to use in websites, apps, blogs, and docs.

Unicode
U+228F
HTML Code
⊏
HEX Code
⊏
CSS Code
\228F
JS/JSON
\u228F
Unix/C/PHP/JAVA
0x228F
URL-encode
%E2%8A%8F

Customize Square Image Of

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

  

How to use Square Image Of Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊏</span>
HTML Code:
<span>&#8847;</span>
HEX Code:
<span>&#x228F;</span>

Add with CSS

.square-image-of::before {
  content: '\\228F';
}

Set it in JavaScript

document.querySelector('.square-image-of').textContent = '⊏';
copied