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