| Nome del simbolo | Alarm Bell Symbol |
| Versione Unicode | 17.0 |
| Unicode | U+1FBFA |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \1FBFA |
| Codice esadecimale | 0x1FBFA |
| Codice HTML | 🯺 |
| LaTeX | \text{ALARMBELLSYMBOL} |
| Simbolo | |
| Codifica URL (percentuale UTF-8) | %F0%9F%AF%BA |
| Nome parlato / screen reader | Alarm Bell Symbol |
| UTF-8 | F0 9F AF BA |
| UTF-16 | D83E DFFA |
| UTF-32 | 0001FBFA |
1\documentclass{article}2\usepackage{pifont}3\text{ALARMBELLSYMBOL}4\end{document}Puoi digitare il simbolo alarm bell sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Character Map or paste from this page, or insert via Character Map.
Edit → Emoji & Symbols, search "alarm bell symbol", or use Unicode Hex Input with 1FBFA.
Ctrl + Shift + U, type 1fbfa, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with legacy computing symbol support.
1span.alarm-bell-symbol::before { content: "\1FBFA"; }1<span>🯺</span>La rappresentazione del simbolo Alarm Bell nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\uD83E\uDFFA' or String.fromCodePoint(0x1FBFA) |
| Python | '\N{ALARM BELL SYMBOL}' or chr(130042) |
| Rust | '\u{1FBFA}' |
| C / C++ | UTF-8 source or wchar_t with U+1FBFA |
| Go | string(rune(0x1FBFA)) |
| Ruby | "\u{1FBFA}" |