| Nombre del símbolo | Hangul Syllable No |
| Versión Unicode | 2.0 |
| Unicode | U+B178 |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \B178 |
| Código hexadecimal | 0xB178 |
| Código HTML | 노 |
| LaTeX | \hangul{B178} |
| Símbolo | 노 |
| Codificación URL (porcentaje UTF-8) | %EB%85%B8 |
| Nombre oral / lector de pantalla | Hangul Syllable No |
| UTF-8 | EB 85 B8 |
| UTF-16 | B178 |
| UTF-32 | 0000B178 |
1\documentclass{article}2\usepackage{pifont}3\hangul{B178}4\end{document}Puedes escribir el símbolo hangul syllable no en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 45432 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable no", or use Unicode Hex Input with B178.
Ctrl + Shift + U, type b178, 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-no::before { content: "\B178"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>노</span>La representación del símbolo Hangul Syllable No en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\uB178' or String.fromCodePoint(45432) |
| Python | '\N{HANGUL SYLLABLE NO}' or chr(45432) |
| Rust | '\u{B178}' |
| C / C++ | UTF-8 source or wchar_t with U+B178 |
| Go | string(rune(0xB178)) |
| Ruby | "\u{B178}" |