Latin Capital Letter K With Cedilla

Ķ

Shortcodes

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

Unicode
U+0136
HTML Code
Ķ
HEX Code
Ķ
CSS Code
\0136
JS/JSON
\u0136
Unix/C/PHP/JAVA
0x136
URL-encode
%C4%B6

Customize Latin Capital Letter K With Cedilla

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

Ķ
  

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

Insert in HTML

1. Direct symbol:
<span>Ķ</span>
HTML Code:
<span>&#310;</span>
HEX Code:
<span>&#x0136;</span>

Add with CSS

.latin-capital-letter-k-with-cedilla::before {
  content: '\\0136';
}

Set it in JavaScript

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