Cubed Symbol (Superscript Three)

Unicode Name: Superscript Three

³

Shortcodes

Copy and paste codes for Cubed Symbol (Superscript Three) ³ to use in your websites, apps, blogs, and more.

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

Customize Cubed Symbol (Superscript Three) Symbol

Customize ³ symbol as you like and download Cubed Symbol (Superscript Three) 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 type Cubed Symbol (Superscript Three) ³ ?

Using Cubed Symbol (Superscript Three) Alt Code:

You can type the Cubed Symbol (Superscript Three) ³ using your keyboard by using the Alt Code for Cubed Symbol (Superscript Three). Before you begin, ensure that your Num Lock is turned on, and use the Numpad to type the code. Then, follow these simple steps:

  1. Hold down the Alt key on your keyboard.
  2. Type the number 179 using the Numpad.
  3. Release the Alt key.

This will make the ³ appear on your screen.

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

Insert ³ Cubed Symbol (Superscript Three) using HTML

1. Copy-paste Cubed Symbol (Superscript Three) directly:
<span>³</span>
2. HTML Decimal Code:
<span>&#179;</span>
3. HTML Entity:
<span>&sup3;</span>
4. Hexadecimal Code:
<span>&#x00B3;</span>
Preview: ³

Add Cubed Symbol (Superscript Three) with CSS

.cubed::before {
    content: '\\0B3';
}
Preview: Cubed Symbol (Superscript Three)

Cubed Symbol (Superscript Three) JavaScript Code

1. Direct Symbol:
document.querySelector('.cubed').textContent = '³';
2. Unicode Escape for ³:
document.querySelector('.cubed').textContent = '\u00B3';
Preview: ³