Latin Letter Small Capital K

Shortcodes

Copy useful codes for latin letter small capital k symbol ᴋ to use in websites, apps, blogs, and docs.

Unicode
U+1D0B
HTML Code
ᴋ
HEX Code
ᴋ
CSS Code
\1D0B
JS/JSON
\u1D0B
Unix/C/PHP/JAVA
0x1D0B
URL-encode
%E1%B4%8B

Customize Latin Letter Small Capital K

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᴋ</span>
HTML Code:
<span>&#7435;</span>
HEX Code:
<span>&#x1D0B;</span>

Add with CSS

.latin-letter-small-capital-k::before {
  content: '\\1D0B';
}

Set it in JavaScript

document.querySelector('.latin-letter-small-capital-k').textContent = 'ᴋ';
copied