Square Nf

Shortcodes

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

Unicode
U+338B
HTML Code
㎋
HEX Code
㎋
CSS Code
\338B
JS/JSON
\u338B
Unix/C/PHP/JAVA
0x338B
URL-encode
%E3%8E%8B

Customize Square Nf

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

  

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

Insert in HTML

1. Direct symbol:
<span>㎋</span>
HTML Code:
<span>&#13195;</span>
HEX Code:
<span>&#x338B;</span>

Add with CSS

.square-nf::before {
  content: '\\338B';
}

Set it in JavaScript

document.querySelector('.square-nf').textContent = '㎋';
copied