| 記号名 | Butterfly Hanzi |
| Unicodeバージョン | 1.1 |
| Unicode | U+8776 |
| Unicodeブロック | |
| 一般カテゴリ | Other Letter (Lo) |
| CSSコード | \8776 |
| 16進コード | 0x8776 |
| HTMLコード | 蝶 |
| LaTeX | \CJKchar{8776} |
| 記号 | 蝶 |
| URLエンコード(UTF-8パーセント) | %E8%9D%B6 |
| 読み上げ名 / スクリーンリーダー | Butterfly Hanzi |
| UTF-8 | E8 9D B6 |
| UTF-16 | 8776 |
| UTF-32 | 00008776 |
1\documentclass{article}2\usepackage{pifont}3\CJKchar{8776}4\end{document}以下の方法でほとんどの最新デバイスでbutterfly hanzi記号を入力できます:
Alt + 34678 on Windows (numeric keypad with Num Lock), or insert via Character Map / IME.
Edit → Emoji & Symbols, search "butterfly hanzi", or use Unicode Hex Input with 8776.
Ctrl + Shift + U, type 8776, then Enter (layout-dependent), or use an IBus CJK table.
Paste from this page, use text replacement, or pick from a Japanese/Chinese keyboard.
Paste from this page or use a keyboard with CJK ideograph support.
1span.cjk-butterfly::before { content: "\\8776"; font-family: "Hiragino Sans", "PingFang SC", "Noto Sans CJK SC", serif; }1<span>蝶</span>各プログラミング言語におけるButterfly Hanzi記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u8776' or String.fromCodePoint(34678) |
| Python | '\N{CJK UNIFIED IDEOGRAPH-8776}' or chr(34678) |
| Rust | '\u{8776}' |
| C / C++ | UTF-8 source or wchar_t with U+8776 |
| Go | string(rune(0x8776)) |
| Ruby | "\u{8776}" |