DevKits

ASCII 3

End of Text (ETX)

Control character

Sent by Ctrl+C on Unix terminals to interrupt a process.

All encodings at a glance

Decimal3
Hexadecimal0x03
Octal0003
Binary00000011
HTML numeric entity
URL encoding%03
UTF-8 bytes0x03

Code snippets

JavaScript

String.fromCharCode(3); // "ETX"
3.toString(16); // "03"

Python

chr(3)           # control char ETX
ord(chr(3))      # 3
hex(3)           # '0x03'

HTML

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

Nearby codes