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