Square Rad Over S Squared

Shortcodes

Copy useful codes for square rad over s squared symbol ㎯ to use in websites, apps, blogs, and docs.

Unicode
U+33AF
HTML Code
㎯
HEX Code
㎯
CSS Code
\33AF
JS/JSON
\u33AF
Unix/C/PHP/JAVA
0x33AF
URL-encode
%E3%8E%AF

Customize Square Rad Over S Squared

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

  

How to use Square Rad Over S Squared Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>㎯</span>
HTML Code:
<span>&#13231;</span>
HEX Code:
<span>&#x33AF;</span>

Add with CSS

.square-rad-over-s-squared::before {
  content: '\\33AF';
}

Set it in JavaScript

document.querySelector('.square-rad-over-s-squared').textContent = '㎯';
copied