| 記号名 | Superscript Eight |
| Unicodeバージョン | 1.1 |
| Unicode | U+2078 |
| Unicodeブロック | |
| 一般カテゴリ | Other Number (No) |
| CSSコード | \2078 |
| 16進コード | 0x2078 |
| HTMLコード | ⁸ |
| LaTeX | ^{8} |
| 記号 | ⁸ |
| URLエンコード(UTF-8パーセント) | %E2%81%B8 |
| 読み上げ名 / スクリーンリーダー | Superscript Eight |
| UTF-8 | E2 81 B8 |
| UTF-16 | 2078 |
| UTF-32 | 00002078 |
1\documentclass{article}2\usepackage{pifont}3^{8}4\end{document}以下の方法でほとんどの最新デバイスでsuperscript eight記号を入力できます:
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記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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" |