Fourth Root

Shortcodes

Copy useful codes for fourth root symbol ∜ to use in websites, apps, blogs, and docs.

Unicode
U+221C
HTML Code
∜
HEX Code
∜
CSS Code
\221C
JS/JSON
\u221C
Unix/C/PHP/JAVA
0x221C
URL-encode
%E2%88%9C

Customize Fourth Root

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

  

How to use Fourth Root Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>∜</span>
HTML Code:
<span>&#8732;</span>
HEX Code:
<span>&#x221C;</span>

Add with CSS

.fourth-root::before {
  content: '\\221C';
}

Set it in JavaScript

document.querySelector('.fourth-root').textContent = '∜';
copied