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