Square Na

Shortcodes

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

Unicode
U+3381
HTML Code
㎁
HEX Code
㎁
CSS Code
\3381
JS/JSON
\u3381
Unix/C/PHP/JAVA
0x3381
URL-encode
%E3%8E%81

Customize Square Na

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

  

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

Insert in HTML

1. Direct symbol:
<span>㎁</span>
HTML Code:
<span>&#13185;</span>
HEX Code:
<span>&#x3381;</span>

Add with CSS

.square-na::before {
  content: '\\3381';
}

Set it in JavaScript

document.querySelector('.square-na').textContent = '㎁';
copied