| Nom du symbole | Hangul Syllable Dyaelm |
| Version Unicode | 2.0 |
| Unicode | U+B342 |
| Bloc Unicode | |
| Catégorie générale | Other Letter (Lo) |
| Code CSS | \B342 |
| Code hexadécimal | 0xB342 |
| Code HTML | 덂 |
| LaTeX | \hangul{B342} |
| Symbole | 덂 |
| Encodage URL (pourcent UTF-8) | %EB%8D%82 |
| Nom oral / lecteur d’écran | Hangul Syllable Dyaelm |
| UTF-8 | EB 8D 82 |
| UTF-16 | B342 |
| UTF-32 | 0000B342 |
1\documentclass{article}2\usepackage{pifont}3\hangul{B342}4\end{document}Vous pouvez saisir le symbole hangul syllable dyaelm sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 45890 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable dyaelm", or use Unicode Hex Input with B342.
Ctrl + Shift + U, type b342, 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-dyaelm::before { content: "\B342"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>덂</span>La représentation du symbole Hangul Syllable Dyaelm dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\uB342' or String.fromCodePoint(45890) |
| Python | '\N{HANGUL SYLLABLE DYAELM}' or chr(45890) |
| Rust | '\u{B342}' |
| C / C++ | UTF-8 source or wchar_t with U+B342 |
| Go | string(rune(0xB342)) |
| Ruby | "\u{B342}" |