HTML Entity for Uppercase K Cedilla (Ķ)

What You'll Learn
How to display the uppercase K with cedilla (Ķ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0136 in the Latin Extended-A block and is the capital form of the Latvian letter ķ, where the cedilla (a hook below the letter) indicates a palatalized k sound.
Render it with Ķ, Ķ, Ķ, or CSS escape \136. The named entity Ķ is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase K Cedilla Entity
U+0136Latin Extended-A
ĶHexadecimal reference
ĶDecimal reference
ĶMost readable option
Name Value
──────────── ──────────
Unicode U+0136
Hex code Ķ
HTML code Ķ
Named entity Ķ
CSS code \136
Meaning Latin capital letter K with cedilla
Related U+0137 = ķ (lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase K cedilla (Ķ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\136";
}
</style>
</head>
<body>
<p>Symbol (hex): Ķ</p>
<p>Symbol (decimal): Ķ</p>
<p>Symbol (named): Ķ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase K cedilla (Ķ) and the named entity Ķ are supported in modern browsers:
👀 Live Preview
See the uppercase K cedilla (Ķ) in Latvian and Baltic contexts:
🧠 How It Works
Named Entity
Ķ is the standard named entity for Ķ—readable in source HTML and part of the HTML5 entity set.
Hexadecimal Code
Ķ uses the Unicode hexadecimal value 136 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ķ uses the decimal Unicode value 310 to display the same character. A common method for Latin Extended-A characters.
CSS Entity
\136 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: Ķ. Unicode U+0136 sits in Latin Extended-A. Lowercase pair: U+0137 (ķ). Do not confuse with plain K, Ǩ (K with caron), or Ç (C with cedilla).
Use Cases
The uppercase K cedilla (Ķ) is commonly used in:
Capitalized Latvian words and titles where Ķ is required at the start of a sentence or in proper nouns.
Latvian and related Baltic language texts, dictionaries, and educational materials.
Latvian courses, pronunciation guides, and resources teaching the letter Ķ.
Websites and apps supporting Latvian with proper encoding and character display.
Technical or reference documentation with Latvian terms and character tables.
Correct Unicode ensures screen readers handle Ķ properly in Latvian content.
Proper spelling helps search indexing for Latvian-language content.
💡 Best Practices
Do
- Use
Ķin HTML when possible for readability - Serve pages as UTF-8; you can also type Ķ directly in UTF-8 source
- Set
lang="lv"on Latvian content to aid pronunciation - Link to the lowercase pair ķ (U+0137) when documenting case forms
- Distinguish Ķ (cedilla) from plain
Kand Ǩ (caron)
Don’t
- Substitute plain
Kwhen Ķ is required for correct Latvian spelling - Confuse cedilla Ķ with caron Ǩ or C cedilla Ç
- Put CSS escape
\136in HTML text nodes - Use
U+00136or CSS\00136—the correct code isU+0136and\136 - Omit UTF-8 encoding on pages with extended Latin characters
Key Takeaways
Four references render Ķ; named entity is most readable
Ķ Ķ ĶFor CSS stylesheets, use the escape in the content property
\136Unicode U+0136 — LATIN CAPITAL LETTER K WITH CEDILLA
Lowercase pair is U+0137 (ķ, ķ)
Previous: Uppercase K Caron (Ǩ) Next: Uppercase K Hook
❓ Frequently Asked Questions
Ķ (named), Ķ (hex), Ķ (decimal), or \136 in CSS content. All four methods render Ķ correctly.U+0136 (LATIN CAPITAL LETTER K WITH CEDILLA). Latin Extended-A block. Hex 136, decimal 310. Used in Latvian and other Baltic languages.Ķ (K cedilla). It is part of the HTML5 standard and supported in modern browsers. You can also use numeric references or type Ķ directly in UTF-8.K (U+004B) is the standard uppercase K. They are distinct Unicode characters used in different orthographic contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — extended Latin, letters, and more.
8 people found this page helpful
