ASCII 7
Bell (BEL)
Control character
Historically rang a physical bell on terminals; today produces a beep in most terminal emulators.
All encodings at a glance
| Decimal | 7 |
| Hexadecimal | 0x07 |
| Octal | 0007 |
| Binary | 00000111 |
| HTML numeric entity |  |
| URL encoding | %07 |
| UTF-8 bytes | 0x07 |
Code snippets
JavaScript
String.fromCharCode(7); // "BEL"
7.toString(16); // "07"Python
chr(7) # control char BEL
ord(chr(7)) # 7
hex(7) # '0x07'HTML
 <!-- numeric entity (no named entity for this character) -->