HTML Entity for Uppercase K Caron (Ǩ)

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

What You'll Learn

How to display the uppercase K with caron (Ǩ) in HTML using hexadecimal, decimal, and CSS escape methods. The caron (háček) is a diacritic used in Czech, Slovak, and other Slavic orthographies where it indicates a palatal or soft k sound. This character is U+01E8 in the Latin Extended-B block and is the uppercase pair of ǩ.

Render it with Ǩ, Ǩ, or CSS escape \01E8. There is no named HTML entity for this character, so numeric codes or CSS must be used.

⚡ Quick Reference — Uppercase K Caron Entity

Unicode U+01E8

Latin Extended-B

Hex Code Ǩ

Hexadecimal reference

HTML Code Ǩ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01E8
Hex code       Ǩ
HTML code      Ǩ
Named entity   (none)
CSS code       \01E8
Meaning        Latin capital letter K with caron
Related        U+01E9 = ǩ (lowercase pair)
               U+004B = K (plain uppercase)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase K caron (Ǩ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\01E8";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x1E8;</p>
<p>Symbol (decimal): &#488;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase K caron (Ǩ) is supported in modern browsers when the font includes Latin Extended-B glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase K caron (Ǩ) in Czech, Slovak, and Slavic contexts:

Large glyphǨ
Case pairǨ (uppercase) / ǩ (lowercase)
Czech & SlovakOrthography where the caron (háček) modifies K
Not the same asK (U+004B) or Ķ (K with cedilla)
Numeric refs&#x1E8; &#488; \01E8

🧠 How It Works

1

Hexadecimal Code

&#x1E8; uses the Unicode hexadecimal value 1E8 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#488; uses the decimal Unicode value 488 to display the same character. A common method for Latin Extended-B characters.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce the glyph: Ǩ. Unicode U+01E8 sits in Latin Extended-B. Prefer the precomposed character over K + combining caron (U+030C) for better compatibility. Do not confuse with plain K (U+004B) or Ķ (K with cedilla).

Use Cases

The uppercase K caron (Ǩ) is commonly used in:

🇺🇸 Czech & Slovak

Capitalized orthography where the caron indicates a palatal or soft k sound in words and names.

🔤 Slavic linguistics

Academic papers, dictionaries, and language resources describing Slavic characters.

📖 Transliteration

Romanization systems that use Ǩ to represent a specific sound at word start or in all-caps text.

🌐 Internationalization

Websites and apps supporting Czech, Slovak, and Central European languages.

📚 Education

Language-learning materials and pronunciation guides for Czech and Slovak.

♿ Accessibility

Using U+01E8 ensures screen readers interpret Ǩ as one character, not K plus a mark.

⚙ Programmatic HTML

When generating Slavic markup, using &#488; or &#x1E8; ensures correct output.

💡 Best Practices

Do

  • Use U+01E8 (Ǩ) for K with caron; use U+004B for plain K when semantics matter
  • Serve pages as UTF-8; you can also type Ǩ directly in UTF-8 source
  • Link to the lowercase pair ǩ (U+01E9) when documenting case forms
  • Use fonts that support Latin Extended-B for Czech and Slovak text
  • Prefer the precomposed character over K + combining caron (U+030C)

Don’t

  • Substitute plain K when Ǩ is required for correct Czech or Slovak spelling
  • Confuse Ǩ (K with caron) with Ķ (K with cedilla) or plain K
  • Expect a named HTML entity like &Kcaron;—none exists for U+01E8
  • Use U+001E8 or CSS \001E8—the correct code is U+01E8 and \01E8
  • Put CSS escape \01E8 in HTML text nodes

Key Takeaways

1

Three references render Ǩ; no named entity exists

&#x1E8; &#488;
2

For CSS stylesheets, use the escape in the content property

\01E8
3

Unicode U+01E8 — LATIN CAPITAL LETTER K WITH CARON

4

Lowercase pair is U+01E9 (ǩ, k with caron)

❓ Frequently Asked Questions

Use &#x1E8; (hex), &#488; (decimal), or \01E8 in CSS content. There is no named HTML entity for Ǩ.
U+01E8 (LATIN CAPITAL LETTER K WITH CARON). Latin Extended-B block. Hex 1E8, decimal 488. Used in Czech, Slovak, and other Slavic languages.
When writing capitalized Czech or Slovak text, Slavic linguistic content, transliteration systems, internationalization for Central European languages, and any content requiring the correct representation of Ǩ.
Ǩ (U+01E8) is the capital letter K with a caron (háček) diacritic indicating a palatal or soft k sound. K (U+004B) is the standard uppercase K. They are distinct Unicode characters used in different orthographic contexts.
Named HTML entities cover a limited set of characters. Ǩ is in Latin Extended-B and uses numeric codes (hex or decimal) or a CSS escape. Despite informal references to &Kcaron;, no such named entity exists in the HTML specification.

Explore More HTML Entities!

Discover 1500+ HTML character references — extended Latin, letters, 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