Cube Root

Shortcodes

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

Unicode
U+221B
HTML Code
∛
HEX Code
∛
CSS Code
\221B
JS/JSON
\u221B
Unix/C/PHP/JAVA
0x221B
URL-encode
%E2%88%9B
copied

Customize Cube Root Symbol

Customize ∛ symbol as you like and download Cube 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 Cube Root symbol in HTML, CSS, and JS?

Insert ∛ Cube Root using HTML

1. Copy-paste Cube Root directly:
<span>∛</span>
2. HTML Decimal Code:
<span>&#8731;</span>
3. Hexadecimal Code:
<span>&#x221B;</span>
Preview:

Add Cube Root symbol with CSS

.cube-root::before {
    content: '\\221B';
}
Preview: Cube Root

Cube Root JavaScript Code

1. Direct Symbol:
document.querySelector('.cube-root').textContent = '∛';
2. Unicode Escape for ∛:
document.querySelector('.cube-root').textContent = '\u221B';
Preview: