Kelvin Sign

Shortcodes

Copy useful codes for kelvin sign K to use in websites, apps, blogs, and docs.

Unicode
U+212A
HTML Code
K
HTML Entity
&kelvin;
HEX Code
K
CSS Code
\212A
JS/JSON
\u212A
Unix/C/PHP/JAVA
0x212A
URL-encode
%E2%84%AA

Customize Kelvin Sign

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

  

How to use Kelvin Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>K</span>
HTML Code:
<span>&#8490;</span>
HTML Entity:
<span>&kelvin;</span>
HEX Code:
<span>&#x212A;</span>

Add with CSS

.kelvin-sign::before {
  content: '\\212A';
}

Set it in JavaScript

document.querySelector('.kelvin-sign').textContent = 'K';
copied