DevKits

ASCII 96

Grave Accent (`)

Printable ASCII

Backtick. Wraps template literals in JavaScript, raw strings in Go, and code in Markdown.

All encodings at a glance

Decimal96
Hexadecimal0x60
Octal0140
Binary01100000
HTML numeric entity`
URL encoding%60
UTF-8 bytes0x60

Code snippets

JavaScript

String.fromCharCode(96); // "`"
96.toString(16); // "60"

Python

chr(96)           # '`'
ord(chr(96))      # 96
hex(96)           # '0x60'

HTML

&#96;   <!-- numeric entity (no named entity for this character) -->

Nearby codes