Square Iu

Shortcodes

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

Unicode
U+337A
HTML Code
㍺
HEX Code
㍺
CSS Code
\337A
JS/JSON
\u337A
Unix/C/PHP/JAVA
0x337A
URL-encode
%E3%8D%BA

Customize Square Iu

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

  

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

Insert in HTML

1. Direct symbol:
<span>㍺</span>
HTML Code:
<span>&#13178;</span>
HEX Code:
<span>&#x337A;</span>

Add with CSS

.square-iu::before {
  content: '\\337A';
}

Set it in JavaScript

document.querySelector('.square-iu').textContent = '㍺';
copied