Cube Root

Shortcodes

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

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

Customize Cube Root

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

  

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

Insert in HTML

1. Direct symbol:
<span>∛</span>
HTML Code:
<span>&#8731;</span>
HEX Code:
<span>&#x221B;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.cube-root').textContent = '∛';
copied