DevKits

ASCII 126

Tilde (~)

Printable ASCII

Tilde. Home directory shortcut in Unix. Bitwise NOT in C-family languages.

All encodings at a glance

Decimal126
Hexadecimal0x7E
Octal0176
Binary01111110
HTML numeric entity~
URL encoding%7E
UTF-8 bytes0x7E

Code snippets

JavaScript

String.fromCharCode(126); // "~"
126.toString(16); // "7e"

Python

chr(126)           # '~'
ord(chr(126))      # 126
hex(126)           # '0x7e'

HTML

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

Nearby codes