| 記号名 | Superscript Six |
| Unicodeバージョン | 1.1 |
| Unicode | U+2076 |
| Unicodeブロック | |
| 一般カテゴリ | Other Number (No) |
| CSSコード | \2076 |
| 16進コード | 0x2076 |
| HTMLコード | ⁶ |
| LaTeX | ^{6} |
| 記号 | ⁶ |
| URLエンコード(UTF-8パーセント) | %E2%81%B6 |
| 読み上げ名 / スクリーンリーダー | Superscript Six |
| UTF-8 | E2 81 B6 |
| UTF-16 | 2076 |
| UTF-32 | 00002076 |
1\documentclass{article}2\usepackage{pifont}3^{6}4\end{document}以下の方法でほとんどの最新デバイスでsuperscript six記号を入力できます:
Alt + 8310 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "superscript six", or use Unicode Hex Input with 2076.
Ctrl + Shift + U, type 2076, 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-six::before { content: "\2076"; }1<span>⁶</span>各プログラミング言語におけるSuperscript Six記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2076' or String.fromCodePoint(0x2076) |
| Python | '\N{SUPERSCRIPT SIX}' or chr(8310) |
| Rust | '\u{2076}' |
| C / C++ | UTF-8 source or wchar_t with U+2076 |
| Go | string(rune(0x2076)) |
| Ruby | "\u2076" |