Square Cal

Shortcodes

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

Unicode
U+3388
HTML Code
㎈
HEX Code
㎈
CSS Code
\3388
JS/JSON
\u3388
Unix/C/PHP/JAVA
0x3388
URL-encode
%E3%8E%88

Customize Square Cal

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

  

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

Insert in HTML

1. Direct symbol:
<span>㎈</span>
HTML Code:
<span>&#13192;</span>
HEX Code:
<span>&#x3388;</span>

Add with CSS

.square-cal::before {
  content: '\\3388';
}

Set it in JavaScript

document.querySelector('.square-cal').textContent = '㎈';
copied