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