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