| Symbol Name | Superscript Eight |
| Unicode Version | 1.1 |
| Unicode | U+2078 |
| Unicode block | |
| General category | Other Number (No) |
| CSS Code | \2078 |
| Hex Code | 0x2078 |
| HTML Code | ⁸ |
| LaTeX | ^{8} |
| Symbol | ⁸ |
| URL encode (UTF-8 percent) | %E2%81%B8 |
| Spoken / screen reader name | Superscript Eight |
| UTF-8 | E2 81 B8 |
| UTF-16 | 2078 |
| UTF-32 | 00002078 |
1\documentclass{article}2\usepackage{pifont}3^{8}4\end{document}You can type the superscript eight symbol on most modern devices with the help of following methods:
Alt + 8312 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "superscript eight", or use Unicode Hex Input with 2078.
Ctrl + Shift + U, type 2078, 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-eight::before { content: "\2078"; }1<span>⁸</span>Superscript Eight symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u2078' or String.fromCodePoint(0x2078) |
| Python | '\N{SUPERSCRIPT EIGHT}' or chr(8312) |
| Rust | '\u{2078}' |
| C / C++ | UTF-8 source or wchar_t with U+2078 |
| Go | string(rune(0x2078)) |
| Ruby | "\u2078" |