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