HTML Entity for Caron (U+030C)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+030C

What Is Caron?

Combining caron (U+030C) is a combining mark in the Combining Diacritical Marks block (also called a háček). It does not stand alone like a normal letter — it stacks above the character that comes before it. Example: c + ̌ renders as č (same look as precomposed č).

Remember
Character     combining caron (after a base)
Unicode       U+030C
Hex entity    ̌
Decimal       ̌
CSS escape    \030C
Named entity  (none for U+030C)
Example       č → č
Not the same  ˇ U+02C7 (ˇ spacing)

Prefer a precomposed letter (e.g. č / č) for everyday text. Use U+030C when you need to compose accents, work with NFD text, or attach a caron to a base that has no single precomposed form.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Hex entity̌HTML markup (after base letter)
Decimal entity̌HTML markup (after base letter)
CSS escape\030CStylesheet content string
Precomposed čč / čNormal prose (often simpler)
Spacing caron ˇˇ / ˇStandalone mark (U+02C7) — not U+030C

When to Use Which

SituationUse
Normal words with č, š, ž, ňPrecomposed letters (č, č)
Need combining mark in HTML sourceč or č
Generated text via ::before / ::aftercontent: "c\030C"
Want a standalone spacing caron (ˇ)ˇ / U+02C7 — not U+030C
Caron under the letterU+032C

Live Preview

Combining caron after common bases (same code point, different letters).

Letters + caron č   š   ž   ň   ř
Large (c + caron) č
In a word čaj (c + U+030C) vs čaj (precomposed)
vs. spacing caron č combining  ·  ˇ spacing
With entities Hex: č | Decimal: č

Complete HTML Example

One page that attaches U+030C to the letter c with hex, decimal, CSS escape, and a typed combining sequence. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce č (c + combining caron) in one document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Combining Caron (U+030C) in HTML</title>
  <style>
    #point::after {
      content: "c\030C";
    }
  </style>
</head>
<body>
  <p>Caron using Hex Code: c&#x030C;</p>
  <p>Caron using HTML Code: c&#780;</p>
  <p id="point">Caron using CSS Entity: </p>
  <p>Typed directly: č</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: write the base letter, then &#x030C; → c&#x030C; becomes č.

2. Decimal: same mark as 780 → c&#780;. Same result as hex.

3. CSS: put base + escape in one string: content: "c\030C". #point::after appends that sequence after the paragraph text.

4. Typed: in UTF-8 you can type c then the combining caron. Order must stay base first, mark second.

Pitfalls & Tips

Common mistakes when working with combining caron.

Order

Base letter first

Write c&#x030C;, never put U+030C before the letter you want to accent.

Named?

No named entity for U+030C

Use numeric forms. &caron; is for spacing ˇ (U+02C7), not the combining mark.

ˇ

Not spacing caron

Spacing caron ˇ (U+02C7) stands alone. U+030C must follow a base character.

CSS vs HTML

Do not mix escapes

\030C belongs in CSS strings. &#x030C; / &#780; belong in HTML.

Fonts

Combining support varies

Some fonts stack poorly. If layout looks wrong, prefer a precomposed letter for display text.

Semicolon

End references

Always finish with ; — write &#780;, not &#780.

Browser Support

Combining caron (U+030C) and its numeric entity forms (&#x030C;, &#780;, CSS \\030C) are supported in all mainstream browsers. Stacking quality depends on font support for combining marks.

✓ Universal support

Caron (U+030C)

Encode with hex, decimal, or CSS escape after a base letter — same combining mark everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+030C / entities Full support

Bottom line: Prefer precomposed letters for normal prose. Use &#x030C; or &#780; after a base letter when you need the combining mark, and \\030C only inside CSS content strings.

Key Takeaways

  • Unicode: combining caron is U+030C (decimal 780).
  • HTML: base first, then &#x030C; or &#780; (e.g. c&#x030C;).
  • CSS: use "c\030C" (or another base) inside content.
  • Default: use precomposed č / &ccaron; for everyday text when you can.

One line: U+030C → after a base letter as &#x030C; / &#780; / CSS \030C.

Frequently Asked Questions

Place &#x030C; (hex) or &#780; (decimal) immediately after a base letter — for example c&#x030C; for č. In CSS, use content: "c\030C". There is no named HTML entity for U+030C.
U+030C (hex 030C, decimal 780). It belongs to the Combining Diacritical Marks block and stacks above the preceding base character (háček).
No. Use numeric references like &#780; or &#x030C;. Note: &caron; and &Hacek; are for spacing caron ˇ (U+02C7), not the combining mark.
Use U+030C when composing accents dynamically, for NFD text, or bases without a precomposed form. For ordinary prose, prefer precomposed letters like č / &ccaron;.
HTML entities (&#780; or &#x030C;) go in markup after the base letter. The CSS escape \030C goes in stylesheet strings (usually content on ::before/::after), typically as "c\030C".
U+030C is a combining mark that attaches to the previous character. U+02C7 (caron / &caron;) is a spacing modifier that stands alone. Do not use them interchangeably.

Did you know?

Combining caron is Unicode U+030C (decimal 780). It is a combining mark — place it after a base letter (e.g. c&#x030C; → č). HTML5 has no named entity for U+030C. &caron; / &Hacek; map to spacing caron (U+02C7 ˇ), not this mark.

Next: Caron Below

Learn the HTML entity for combining caron below (U+032C).

Caron Below tutorial →

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