Square Gal

Shortcodes

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

Unicode
U+33FF
HTML Code
㏿
HEX Code
㏿
CSS Code
\33FF
JS/JSON
\u33FF
Unix/C/PHP/JAVA
0x33FF
URL-encode
%E3%8F%BF

Customize Square Gal

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

  

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

Insert in HTML

1. Direct symbol:
<span>㏿</span>
HTML Code:
<span>&#13311;</span>
HEX Code:
<span>&#x33FF;</span>

Add with CSS

.square-gal::before {
  content: '\\33FF';
}

Set it in JavaScript

document.querySelector('.square-gal').textContent = '㏿';
copied