Latin Small Letter K With Cedilla

ķ

Shortcodes

Copy useful codes for latin small letter k with cedilla symbol ķ to use in websites, apps, blogs, and docs.

Unicode
U+0137
HTML Code
ķ
HEX Code
ķ
CSS Code
\0137
JS/JSON
\u0137
Unix/C/PHP/JAVA
0x137
URL-encode
%C4%B7

Customize Latin Small Letter K With Cedilla

Customize ķ, download it as SVG or PNG, or copy the generated HTML snippet.

ķ
  

How to use Latin Small Letter K With Cedilla Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ķ</span>
HTML Code:
<span>&#311;</span>
HEX Code:
<span>&#x0137;</span>

Add with CSS

.latin-small-letter-k-with-cedilla::before {
  content: '\\0137';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-k-with-cedilla').textContent = 'ķ';
copied