| 記号名 | Partial Differential |
| Unicodeバージョン | 1.1 |
| Unicode | U+2202 |
| Unicodeブロック | |
| 一般カテゴリ | Math Symbol (Sm) |
| CSSコード | \2202 |
| 16進コード | 0x2202 |
| HTMLコード | ∂ |
| LaTeX | \partial |
| 記号 | ∂ |
| URLエンコード(UTF-8パーセント) | %E2%88%82 |
| 読み上げ名 / スクリーンリーダー | Partial Differential |
| UTF-8 | E2 88 82 |
| UTF-16 | 2202 |
| UTF-32 | 00002202 |
1\documentclass{article}2\usepackage{pifont}3\partial4\end{document}以下の方法でほとんどの最新デバイスでpartial differential記号を入力できます:
Alt + 8706 on the numeric keypad, or Insert → Symbol → Mathematical Operators.
Edit → Emoji & Symbols → search “partial differential”, or Unicode Hex Input then 2202.
Ctrl + Shift + U, type 2202, Enter (layout-dependent).
Paste from this page or use third-party keyboards with Unicode / math palettes.
Paste from this page or select ∂ from extended math symbol panels where available.
1span.partial::before { content: "\2202"; }1<span>∂</span>各プログラミング言語におけるPartial Differential記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2202' or String.fromCodePoint(0x2202) |
| Python | '\N{PARTIAL DIFFERENTIAL}' or chr(8706) |
| Rust | '\u{2202}' |
| C / C++ | UTF-8 literal or \u2202 in wide strings (implementation-dependent) |
| Go | string(rune(0x2202)) |
| Ruby | "\u2202" or 8706.chr(Encoding::UTF_8) |