Latin Subscript Small Letter K

Shortcodes

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

Unicode
U+2096
HTML Code
ₖ
HEX Code
ₖ
CSS Code
\2096
JS/JSON
\u2096
Unix/C/PHP/JAVA
0x2096
URL-encode
%E2%82%96

Customize Latin Subscript Small Letter K

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

  

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

Insert in HTML

1. Direct symbol:
<span>ₖ</span>
HTML Code:
<span>&#8342;</span>
HEX Code:
<span>&#x2096;</span>

Add with CSS

.latin-subscript-small-letter-k::before {
  content: '\\2096';
}

Set it in JavaScript

document.querySelector('.latin-subscript-small-letter-k').textContent = 'ₖ';
copied