| 記号名 | Infinity Symbol |
| Unicodeバージョン | 1.1 |
| Unicode | U+221E |
| Unicodeブロック | |
| 一般カテゴリ | Math Symbol (Sm) |
| CSSコード | \221E |
| 16進コード | 0x221E |
| HTMLコード | ∞ |
| LaTeX | \infty |
| 記号 | ∞ |
| URLエンコード(UTF-8パーセント) | %E2%88%9E |
| Discord / Slack ショートコード | :infinity: |
| 読み上げ名 / スクリーンリーダー | Infinity |
| UTF-8 | E2 88 9E |
| UTF-16 | 221E |
| UTF-32 | 0000221E |
1\documentclass{article}2\usepackage{pifont}3\infty4\end{document}以下の方法でほとんどの最新デバイスでinfinity記号を入力できます:
Alt + 8734 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "infinity", or Unicode Hex Input with 221E.
Ctrl + Shift + U, then type 221e and Enter (layout-dependent).
Paste from this page or search the math symbols palette.
Paste from this page or open your keyboard's special-character and math panels.
1span.inf::before { content: "\221E"; }1<span>∞</span>各プログラミング言語におけるInfinity記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u221E' or String.fromCodePoint(0x221E) |
| Python | '\N{INFINITY}' or chr(8734) |
| Rust | '\u{221E}' |
| C / C++ | UTF-8 source or wchar_t with U+221E (compiler-dependent) |
| Go | string(rune(0x221E)) or "\u221E" |
| Ruby | "\u221E" in a string or ? + 8734.chr (U+221E) |