Square Kk

Shortcodes

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

Unicode
U+33CD
HTML Code
㏍
HEX Code
㏍
CSS Code
\33CD
JS/JSON
\u33CD
Unix/C/PHP/JAVA
0x33CD
URL-encode
%E3%8F%8D

Customize Square Kk

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

  

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

Insert in HTML

1. Direct symbol:
<span>㏍</span>
HTML Code:
<span>&#13261;</span>
HEX Code:
<span>&#x33CD;</span>

Add with CSS

.square-kk::before {
  content: '\\33CD';
}

Set it in JavaScript

document.querySelector('.square-kk').textContent = '㏍';
copied