Mathematical Fraktur Small K

๐”จ

Shortcodes

Copy useful codes for mathematical fraktur small k symbol ๐”จ to use in websites, apps, blogs, and docs.

Unicode
U+1D528
HTML Code
𝔨
HEX Code
𝔨
CSS Code
\1D528
JS/JSON
\u1D528
Unix/C/PHP/JAVA
0x1D528
URL-encode
%F0%9D%94%A8

Customize Mathematical Fraktur Small K

Customize ๐”จ, download it as SVG or PNG, or copy the generated HTML snippet.

๐”จ
  

How to use Mathematical Fraktur Small K Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐”จ</span>
HTML Code:
<span>&#120104;</span>
HEX Code:
<span>&#x1D528;</span>

Add with CSS

.mathematical-fraktur-small-k::before {
  content: '\\1D528';
}

Set it in JavaScript

document.querySelector('.mathematical-fraktur-small-k').textContent = '๐”จ';
copied