`
Technical

Grave Accent `

The grave accent (backtick) has become one of the most important characters in modern programming. It delimits template literals in JavaScript, inline code in markdown, and command substitution in shell scripts. The standalone grave accent is a spacing character distinct from the combining grave used in French and Italian accented letters.

All Representations

Named Entity
`
Decimal Code
`
Hex Code
`
Unicode
U+0060

Rendered Output

`

` renders as the character shown above

When to Use Grave Accent

Use the grave accent entity in HTML content that discusses markdown syntax, JavaScript template literals, or shell command substitution, where a literal backtick needs to be shown without being interpreted. It is especially important in code documentation content.

Try It — HTML Examples

Named entity in text
<p>Symbol: &grave;</p>
Decimal reference
<p>Symbol: &#96;</p>
Hex reference
<p>Symbol: &#x60;</p>
Inside an HTML attribute
<div title="The Grave Accent: &grave;">Hover to see</div>

About the Grave Accent Entity

The Grave Accent character (`) is a standard HTML entity defined in the HTML specification. In HTML source code, it can be written using the named entity reference &grave;, the decimal numeric character reference &#96;, or the hexadecimal numeric reference &#x60;. The character is assigned Unicode code point U+0060 in the Universal Character Set.

The grave accent (backtick) has become one of the most important characters in modern programming. It delimits template literals in JavaScript, inline code in markdown, and command substitution in shell scripts. The standalone grave accent is a spacing character distinct from the combining grave used in French and Italian accented letters.

Technical character entities represent brackets, delimiters, and punctuation marks that frequently require escaping in HTML source code and programming contexts. Characters like curly braces, square brackets, pipes, and backslashes often carry special meaning in templating engines, regular expressions, or markup parsers, making their explicit HTML entity encoding important for preventing unintended interpretation by the browser or build tools.

When deciding how to encode the Grave Accent character in your HTML documents, the named entity &grave; is generally the most readable choice for developers reviewing or maintaining source code. The decimal form &#96; and hexadecimal form &#x60; are equally valid alternatives that work in contexts where named entities may not be supported, or when generating HTML output programmatically from server-side code. All three representations produce identical visual output in every modern web browser.

Use the grave accent entity in HTML content that discusses markdown syntax, JavaScript template literals, or shell command substitution, where a literal backtick needs to be shown without being interpreted. It is especially important in code documentation content.

Related Entities

Explore More HTML Entities

Browse our complete reference of 262 HTML entities with codes, examples, and usage tips.