| Symbol Name | Superscript Three |
| Unicode Version | 1.1 |
| Unicode | U+00B3 |
| Unicode block | |
| General category | Other Number (No) |
| CSS Code | \00B3 |
| Hex Code | 0x00B3 |
| HTML Code | ³ |
| LaTeX | ^{3} |
| Symbol | ³ |
| URL encode (UTF-8 percent) | %C2%B3 |
| Spoken / screen reader name | Superscript Three |
| UTF-8 | C2 B3 |
| UTF-16 | 00B3 |
| UTF-32 | 000000B3 |
1\documentclass{article}2\usepackage{pifont}3^{3}4\end{document}You can type the superscript three symbol on most modern devices with the help of following methods:
Alt + 179 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "superscript three", or use Unicode Hex Input with 00B3.
Ctrl + Shift + U, type 00b3, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with enclosed numeral support.
1span.superscript-three::before { content: "\00B3"; }1<span>³</span>Superscript Three symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u00B3' or String.fromCodePoint(0x00B3) |
| Python | '\N{SUPERSCRIPT THREE}' or chr(179) |
| Rust | '\u{00B3}' |
| C / C++ | UTF-8 source or wchar_t with U+00B3 |
| Go | string(rune(0x00B3)) |
| Ruby | "\u00B3" |