| 記号名 | Hangul Syllable Ssamh |
| Unicodeバージョン | 2.0 |
| Unicode | U+C30D |
| Unicodeブロック | |
| 一般カテゴリ | Other Letter (Lo) |
| CSSコード | \C30D |
| 16進コード | 0xC30D |
| HTMLコード | 쌍 |
| LaTeX | \hangul{C30D} |
| 記号 | 쌍 |
| URLエンコード(UTF-8パーセント) | %EC%8C%8D |
| 読み上げ名 / スクリーンリーダー | Hangul Syllable Ssamh |
| UTF-8 | EC 8C 8D |
| UTF-16 | C30D |
| UTF-32 | 0000C30D |
1\documentclass{article}2\usepackage{pifont}3\hangul{C30D}4\end{document}以下の方法でほとんどの最新デバイスでhangul syllable ssamh記号を入力できます:
Alt + 49933 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable ssamh", or use Unicode Hex Input with C30D.
Ctrl + Shift + U, type c30d, then Enter (layout-dependent), or use an IBus Hangul table.
Paste from this page, use text replacement, or pick from the Korean keyboard.
Paste from this page or use a keyboard with Hangul support.
1span.korean-syllable-ssamh::before { content: "\C30D"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>쌍</span>各プログラミング言語におけるHangul Syllable Ssamh記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\uC30D' or String.fromCodePoint(49933) |
| Python | '\N{HANGUL SYLLABLE SSAMH}' or chr(49933) |
| Rust | '\u{C30D}' |
| C / C++ | UTF-8 source or wchar_t with U+C30D |
| Go | string(rune(0xC30D)) |
| Ruby | "\u{C30D}" |