`

ASCII Character: Grave accent

ASCII Code 96 · Unicode U+0060 · Hex 0x60

grave-accent backtick

About the Grave accent Character

ASCII code 96 (0x60) represents the Grave accent character "`". The "Grave accent" character (`) with ASCII code 96 is a punctuation or special symbol in the printable ASCII range. Punctuation characters serve important roles in both natural language writing and programming syntax. The printable ASCII characters (codes 32–126) include the space, digits, uppercase and lowercase Latin letters, and common punctuation symbols. These 95 characters form the foundation of text representation in virtually all computing systems and are universally supported across all character encodings, programming languages, and operating systems.

Encoding Details

ASCII Code 96
Hexadecimal 0x60
Octal 140
Binary 01100000
Unicode U+0060
Unicode Name GRAVE ACCENT
HTML Numeric `
HTML Entity `
URL Escape %60
UTF-8 (Hex) 60
Quoted-Printable `

Source Code Examples

JavaScript
// Character literal
let char = '`';
// Using char code
let char2 = String.fromCharCode(96);
// Unicode escape
let char3 = '\x60';
Python
# Character literal
char = '`'
# Using chr()
char = chr(96)
# Using ord() to get code
code = ord('`')  # Returns 96
HTML
<!-- Direct character -->
`
<!-- HTML entity (numeric) -->
&#96;
<!-- Hex entity -->
&#x60;
C#
// Character literal
char c = '`';
// Using cast
char c2 = (char)96;
// To get code from char
int code = (int)'`';  // Returns 96

Navigate

Copied!