ASCII 22
Synchronous Idle (SYN)
Control character
Legacy synchronous transmission control.
All encodings at a glance
| Decimal | 22 |
| Hexadecimal | 0x16 |
| Octal | 0026 |
| Binary | 00010110 |
| HTML numeric entity |  |
| URL encoding | %16 |
| UTF-8 bytes | 0x16 |
Code snippets
JavaScript
String.fromCharCode(22); // "SYN"
22.toString(16); // "16"Python
chr(22) # control char SYN
ord(chr(22)) # 22
hex(22) # '0x16'HTML
 <!-- numeric entity (no named entity for this character) -->