Cubed Symbol (Superscript Three)

Unicode Name: Superscript Three

³

Shortcodes

Copy useful codes for cubed symbol (superscript three) ³ to use in websites, apps, blogs, and docs.

Unicode
U+00B3
Alt Code
179
HTML Code
³
HTML Entity
³
HEX Code
³
CSS Code
\00B3
JS/JSON
\u00B3
Unix/C/PHP/JAVA
0xB3
URL-encode
%C2%B3

Customize Cubed Symbol (Superscript Three)

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

³
  

How to use Cubed Symbol (Superscript Three) in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>³</span>
HTML Code:
<span>&#179;</span>
HTML Entity:
<span>&sup3;</span>
HEX Code:
<span>&#x00B3;</span>

Add with CSS

.cubed::before {
  content: '\\00B3';
}

Set it in JavaScript

document.querySelector('.cubed').textContent = '³';
copied