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