Square Kw

Shortcodes

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

Unicode
U+33BE
HTML Code
㎾
HEX Code
㎾
CSS Code
\33BE
JS/JSON
\u33BE
Unix/C/PHP/JAVA
0x33BE
URL-encode
%E3%8E%BE

Customize Square Kw

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

  

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

Insert in HTML

1. Direct symbol:
<span>㎾</span>
HTML Code:
<span>&#13246;</span>
HEX Code:
<span>&#x33BE;</span>

Add with CSS

.square-kw::before {
  content: '\\33BE';
}

Set it in JavaScript

document.querySelector('.square-kw').textContent = '㎾';
copied