~
Tilde
Decimal: 126
Hex: 7E
Symbol
ASCII Values
Decimal
126
Hexadecimal
0x7E
Character
~
Usage Examples
JavaScript (from decimal)
String.fromCharCode(126); // "~"
JavaScript (to decimal)
"~".charCodeAt(0); // 126
Python
chr(126) # "~"
ord("~") # 126C/C++
char c = 126; // '~' int code = '~'; // 126
Symbol Characters
Symbol characters include punctuation marks, mathematical operators, and special characters used in programming and text formatting.