ASCII 3
End of Text (ETX)
Control character
Sent by Ctrl+C on Unix terminals to interrupt a process.
All encodings at a glance
| Decimal | 3 |
| Hexadecimal | 0x03 |
| Octal | 0003 |
| Binary | 00000011 |
| HTML numeric entity |  |
| URL encoding | %03 |
| UTF-8 bytes | 0x03 |
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
 <!-- numeric entity (no named entity for this character) -->