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