Square Nv

Shortcodes

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

Unicode
U+33B5
HTML Code
㎵
HEX Code
㎵
CSS Code
\33B5
JS/JSON
\u33B5
Unix/C/PHP/JAVA
0x33B5
URL-encode
%E3%8E%B5

Customize Square Nv

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

  

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

Insert in HTML

1. Direct symbol:
<span>㎵</span>
HTML Code:
<span>&#13237;</span>
HEX Code:
<span>&#x33B5;</span>

Add with CSS

.square-nv::before {
  content: '\\33B5';
}

Set it in JavaScript

document.querySelector('.square-nv').textContent = '㎵';
copied