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