Square Kg

Shortcodes

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

Unicode
U+338F
HTML Code
㎏
HEX Code
㎏
CSS Code
\338F
JS/JSON
\u338F
Unix/C/PHP/JAVA
0x338F
URL-encode
%E3%8E%8F

Customize Square Kg

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

  

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

Insert in HTML

1. Direct symbol:
<span>㎏</span>
HTML Code:
<span>&#13199;</span>
HEX Code:
<span>&#x338F;</span>

Add with CSS

.square-kg::before {
  content: '\\338F';
}

Set it in JavaScript

document.querySelector('.square-kg').textContent = '㎏';
copied