| 記号名 | Umbrella |
| Unicodeバージョン | 1.1 |
| Unicode | U+2602 |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \2602 |
| 16進コード | 0x2602 |
| HTMLコード | ☂ |
| LaTeX | \text{UMBRELLA} |
| 記号 | ☂ |
| URLエンコード(UTF-8パーセント) | %E2%98%82 |
| 読み上げ名 / スクリーンリーダー | Umbrella |
| UTF-8 | E2 98 82 |
| UTF-16 | 2602 |
| UTF-32 | 00002602 |
1\documentclass{article}2\usepackage{pifont}3\text{UMBRELLA}4\end{document}以下の方法でほとんどの最新デバイスでumbrella記号を入力できます:
Alt + 9730 on Windows (numeric keypad with Num Lock), or insert via Character Map / emoji panel.
Edit → Emoji & Symbols, search "umbrella", or paste from this page.
Ctrl + Shift + U, type 2602, then Enter (layout-dependent), or paste.
Paste from this page, use the emoji keyboard, or pick from weather symbol suggestions.
Paste from this page or use keyboard weather/emoji suggestions.
1span.umbrella::before { content: "\2602"; }1<span>☂</span>各プログラミング言語におけるUmbrella記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2602' or String.fromCodePoint(9730) |
| Python | '\N{UMBRELLA}' or chr(9730) |
| Rust | '\u{2602}' |
| C / C++ | UTF-8 source or wchar_t with U+2602 |
| Go | string(rune(0x2602)) |
| Ruby | "\u{2602}" |