Square Dm Squared

Shortcodes

Copy useful codes for square dm squared symbol ㍸ to use in websites, apps, blogs, and docs.

Unicode
U+3378
HTML Code
㍸
HEX Code
㍸
CSS Code
\3378
JS/JSON
\u3378
Unix/C/PHP/JAVA
0x3378
URL-encode
%E3%8D%B8

Customize Square Dm Squared

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

  

How to use Square Dm Squared Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>㍸</span>
HTML Code:
<span>&#13176;</span>
HEX Code:
<span>&#x3378;</span>

Add with CSS

.square-dm-squared::before {
  content: '\\3378';
}

Set it in JavaScript

document.querySelector('.square-dm-squared').textContent = '㍸';
copied