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