HTML Entity for Lowercase K Cedilla (ķ)

What You'll Learn
How to display the lowercase k with cedilla (ķ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0137 in the Latin Extended-A block and is an official letter in the Latvian alphabet, where the cedilla (a hook below the letter) indicates a palatalized k sound.
Render it with ķ, ķ, ķ, or CSS escape \137. The named entity ķ is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase K Cedilla Entity
U+0137Latin Extended-A
ķHexadecimal reference
ķDecimal reference
ķMost readable option
Name Value
──────────── ──────────
Unicode U+0137
Hex code ķ
HTML code ķ
Named entity ķ
CSS code \137
Meaning Latin small letter k with cedilla
Related U+0136 = Ķ (uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase k cedilla (ķ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\137";
}
</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 lowercase k cedilla (ķ) and the named entity ķ are supported in modern browsers:
👀 Live Preview
See the lowercase k cedilla (ķ) in Latvian and Baltic contexts:
k (U+006B) or ǩ (k with caron)🧠 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 137 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ķ uses the decimal Unicode value 311 to display the same character. A common method for Latin Extended-A characters.
CSS Entity
\137 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+0137 sits in Latin Extended-A. Uppercase equivalent: U+0136 (Ķ). Do not confuse with plain k, ǩ (k with caron), or ç (c with cedilla).
Use Cases
The lowercase k cedilla (ķ) is commonly used in:
ķ is an official letter in the Latvian alphabet, essential for correct spelling and pronunciation.
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 - Use fonts that support Latin Extended-A characters
- 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
\137in HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- 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
\137Unicode U+0137 — LATIN SMALL LETTER K WITH CEDILLA
Essential for Latvian and Baltic orthography on the web
Previous: Lowercase K Caron (ǩ) Next: Lowercase K Hook
❓ Frequently Asked Questions
ķ (named), ķ (hex), ķ (decimal), or \137 in CSS content. All four methods render ķ correctly.U+0137 (LATIN SMALL LETTER K WITH CEDILLA). Latin Extended-A block. Hex 137, decimal 311. 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+006B) is the standard lowercase k. They are distinct Unicode characters used in different orthographic contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
