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