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