Square In

Shortcodes

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

Unicode
U+33CC
HTML Code
㏌
HEX Code
㏌
CSS Code
\33CC
JS/JSON
\u33CC
Unix/C/PHP/JAVA
0x33CC
URL-encode
%E3%8F%8C

Customize Square In

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

  

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

Insert in HTML

1. Direct symbol:
<span>㏌</span>
HTML Code:
<span>&#13260;</span>
HEX Code:
<span>&#x33CC;</span>

Add with CSS

.square-in::before {
  content: '\\33CC';
}

Set it in JavaScript

document.querySelector('.square-in').textContent = '㏌';
copied