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