DevKits

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

Decimal7
Hexadecimal0x07
Octal0007
Binary00000111
HTML numeric entity
URL encoding%07
UTF-8 bytes0x07

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

&#7;   <!-- numeric entity (no named entity for this character) -->

Nearby codes