HTML Entity for Grave Accent Like (`)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+0060

What You'll Learn

How to display the Grave Accent Like character (`) in HTML—the standalone backtick at U+0060 (GRAVE ACCENT) in the Basic Latin block. Used on keyboards, in code (template literals), and technical documentation.

Render it with `, `, `, or CSS escape \60. Do not confuse this with the combining Grave Accent (U+0300), which attaches above letters to form à, è, and similar accented characters.

⚡ Quick Reference — Grave Accent Like

Unicode U+0060

Basic Latin (backtick)

Hex Code `

Hexadecimal reference

HTML Code `

Decimal reference

Named Entity `

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0060
Hex code       `
HTML code      `
Named entity   `
CSS code       \60
Meaning        Backtick / grave accent like
Also called    Grave accent (standalone)
Not to confuse U+0300 = combining grave (̀)
1

Complete HTML Example

This example demonstrates the backtick (`) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\60";
  }
 </style>
</head>
<body>
<p>Grave Accent Like using Hexadecimal: &#x60;</p>
<p>Grave Accent Like using Decimal: &#96;</p>
<p>Grave Accent Like using Named Entity: &grave;</p>
<p id="point">Grave Accent Like using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The backtick / Grave Accent Like (`) is universally supported in all modern browsers:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the backtick (`) in documentation and code contexts:

Character `
Named entity &grave; renders as `
Code sample const msg = `Hello`;
Keyboard Press ` (grave key)
Numeric refs &#x60; &#96; &grave; \60

🧠 How It Works

1

Hexadecimal Code

&#x60; uses the Unicode hexadecimal value 60 to display the backtick. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#96; uses the decimal Unicode value 96 to display the same character.

HTML markup
3

Named Entity

&grave; is the semantic named entity for the backtick (`)—readable in source HTML and part of the HTML5 character set.

HTML markup
4

CSS Entity

\60 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: `. Unicode U+0060 is the standalone backtick. Next: Grave Tone Mark.

Use Cases

The Grave Accent Like / backtick (`) is commonly used in:

💻 Code samples

JavaScript template literals, shell commands, and programming tutorials on the web.

📚 Documentation

API references, technical docs, and guides that show the backtick character.

⌨ Keyboard UI

Labels for shortcuts or keys that include the grave/backtick key.

📝 Markdown

Explaining inline code delimiters or preformatted text that uses backticks.

🎨 Typography

Opening quote or typographic grave in some language conventions.

📚 Entity references

HTML entity lists and character reference documentation.

💡 Best Practices

Do

  • Use &grave; or &#96; when showing backticks in HTML prose
  • Escape backticks in code examples so they render literally
  • Prefer &grave; for readable source markup
  • Distinguish U+0060 (backtick) from U+0300 (combining)
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse &grave; (U+0060) with combining grave U+0300 for à
  • Leave raw backticks in HTML where parsers might misread them
  • Put CSS escape \60 in HTML text nodes
  • Use U+0060 when you need a diacritic above a letter
  • Mix entity styles randomly in one file

Key Takeaways

1

Three HTML references plus CSS all render `

&#x60; &#96; &grave;
2

For CSS stylesheets, use \60 in the content property

3

Unicode U+0060 — GRAVE ACCENT (backtick)

4

Combining accent for à is U+0300, not U+0060

❓ Frequently Asked Questions

Use &#x60; (hex), &#96; (decimal), &grave; (named), or \60 in CSS content. All render the backtick (`).
U+0060 (GRAVE ACCENT). Basic Latin block. Hex 60, decimal 96. Named entity: &grave;. Not the same as combining U+0300.
When you need to display the backtick in text, code samples, or documentation without it being misinterpreted as markup or template syntax.
&grave; (U+0060) is the standalone backtick (`). U+0300 is a combining mark placed after a letter to form à, è, and similar accented characters.
HTML entities (&grave;, &#96;, or &#x60;) go in markup. The CSS escape \60 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.

Explore More HTML Entities!

Discover 1500+ HTML character references — punctuation, combining marks, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful