Fourth Root

Shortcodes

Copy and paste codes for Fourth Root symbol ∜ to use in your websites, apps, blogs, and more.

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

Customize Fourth Root Symbol

Customize ∜ symbol as you like and download Fourth Root as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Fourth Root symbol in HTML, CSS, and JS?

Insert ∜ Fourth Root using HTML

1. Copy-paste Fourth Root directly:
<span>∜</span>
2. HTML Decimal Code:
<span>&#8732;</span>
3. Hexadecimal Code:
<span>&#x221C;</span>
Preview:

Add Fourth Root symbol with CSS

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

Fourth Root JavaScript Code

1. Direct Symbol:
document.querySelector('.fourth-root').textContent = '∜';
2. Unicode Escape for ∜:
document.querySelector('.fourth-root').textContent = '\u221C';
Preview: