| Nome del simbolo | Hangul Syllable Al |
| Versione Unicode | 2.0 |
| Unicode | U+C54C |
| Blocco Unicode | |
| Categoria generale | Other Letter (Lo) |
| Codice CSS | \C54C |
| Codice esadecimale | 0xC54C |
| Codice HTML | 알 |
| LaTeX | \hangul{C54C} |
| Simbolo | 알 |
| Codifica URL (percentuale UTF-8) | %EC%95%8C |
| Nome parlato / screen reader | Hangul Syllable Al |
| UTF-8 | EC 95 8C |
| UTF-16 | C54C |
| UTF-32 | 0000C54C |
1\documentclass{article}2\usepackage{pifont}3\hangul{C54C}4\end{document}Puoi digitare il simbolo hangul syllable al sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 50508 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable al", or use Unicode Hex Input with C54C.
Ctrl + Shift + U, type c54c, 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-al::before { content: "\C54C"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>알</span>La rappresentazione del simbolo Hangul Syllable Al nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\uC54C' or String.fromCodePoint(50508) |
| Python | '\N{HANGUL SYLLABLE AL}' or chr(50508) |
| Rust | '\u{C54C}' |
| C / C++ | UTF-8 source or wchar_t with U+C54C |
| Go | string(rune(0xC54C)) |
| Ruby | "\u{C54C}" |