Square Nw

Shortcodes

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

Unicode
U+33BB
HTML Code
㎻
HEX Code
㎻
CSS Code
\33BB
JS/JSON
\u33BB
Unix/C/PHP/JAVA
0x33BB
URL-encode
%E3%8E%BB

Customize Square Nw

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

  

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

Insert in HTML

1. Direct symbol:
<span>㎻</span>
HTML Code:
<span>&#13243;</span>
HEX Code:
<span>&#x33BB;</span>

Add with CSS

.square-nw::before {
  content: '\\33BB';
}

Set it in JavaScript

document.querySelector('.square-nw').textContent = '㎻';
copied