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