DevKits

ASCII 22

Synchronous Idle (SYN)

Control character

Legacy synchronous transmission control.

All encodings at a glance

Decimal22
Hexadecimal0x16
Octal0026
Binary00010110
HTML numeric entity
URL encoding%16
UTF-8 bytes0x16

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

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

Nearby codes