| 記号名 | Black Snowman |
| Unicodeバージョン | 5.2 |
| Unicode | U+26C7 |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \26C7 |
| 16進コード | 0x26C7 |
| HTMLコード | ⛇ |
| LaTeX | \text{BLACKSNOWMAN} |
| 記号 | ⛇ |
| URLエンコード(UTF-8パーセント) | %E2%9B%87 |
| 読み上げ名 / スクリーンリーダー | Black Snowman |
| UTF-8 | E2 9B 87 |
| UTF-16 | 26C7 |
| UTF-32 | 000026C7 |
1\documentclass{article}2\usepackage{pifont}3\text{BLACKSNOWMAN}4\end{document}以下の方法でほとんどの最新デバイスでblack snowman記号を入力できます:
Alt + 9927 on Windows (numeric keypad with Num Lock), or insert via Character Map / emoji panel.
Edit → Emoji & Symbols, search "black snowman", or paste from this page.
Ctrl + Shift + U, type 26c7, 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.black-snowman::before { content: "\26C7"; }1<span>⛇</span>各プログラミング言語におけるBlack Snowman記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u26C7' or String.fromCodePoint(9927) |
| Python | '\N{BLACK SNOWMAN}' or chr(9927) |
| Rust | '\u{26C7}' |
| C / C++ | UTF-8 source or wchar_t with U+26C7 |
| Go | string(rune(0x26C7)) |
| Ruby | "\u{26C7}" |