Square Km Cubed

Shortcodes

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

Unicode
U+33A6
HTML Code
㎦
HEX Code
㎦
CSS Code
\33A6
JS/JSON
\u33A6
Unix/C/PHP/JAVA
0x33A6
URL-encode
%E3%8E%A6

Customize Square Km Cubed

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

  

How to use Square Km Cubed Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>㎦</span>
HTML Code:
<span>&#13222;</span>
HEX Code:
<span>&#x33A6;</span>

Add with CSS

.square-km-cubed::before {
  content: '\\33A6';
}

Set it in JavaScript

document.querySelector('.square-km-cubed').textContent = '㎦';
copied