HTML Entity for Kelvin Sign (K)

What You'll Learn
How to display the Kelvin sign (K) in HTML using hexadecimal, decimal, and CSS escape methods. The symbol is the SI unit for thermodynamic temperature (Kelvin, K).
It is U+212A (KELVIN SIGN) in the Letterlike Symbols block (U+2100–U+214F). Use K, K, or CSS \212A. There is no named HTML entity for this character.
⚡ Quick Reference — Kelvin Sign
U+212ALetterlike Symbols
KHexadecimal reference
KDecimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+212A
Hex code K
HTML code K
Named entity (none)
CSS code \212A
Meaning SI temperature unit (K)
Glyph K
Example 273.15 K (absolute zero)Complete HTML Example
This example shows the Kelvin sign (U+212A) using hexadecimal code, decimal HTML code, and a CSS content escape. This character has no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\212A";
}
</style>
</head>
<body>
<p>Kelvin Sign using Hexadecimal: K</p>
<p>Kelvin Sign using Decimal: K</p>
<p id="point">Kelvin Sign using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Kelvin sign (K) is widely supported when fonts include Letterlike Symbols (U+2100–U+214F):
👀 Live Preview
See the Kelvin sign (K) in scientific and temperature contexts:
🧠 How It Works
Hexadecimal Code
K uses the Unicode hexadecimal value 212A to display the Kelvin sign (K).
Decimal HTML Code
K uses the decimal Unicode value 8490 for the same character.
CSS Entity
\212A is used in CSS stylesheets in the content property, often on ::after following a base character in markup.
No Named Entity
U+212A has no standard &...; named form. Use hex, decimal, or CSS escape only.
Same visual result
All three methods produce K (K). Unicode U+212A is in Letterlike Symbols. Next: Khmer Currency Symbol Riel.
Use Cases
The Kelvin sign (K) is commonly used in:
Physics, chemistry, and thermodynamics content (e.g. 273.15 K, absolute zero).
Documentation that lists or explains SI base units, including Kelvin.
STEM tutorials and curricula covering temperature scales and unit symbols.
Lab reports, dashboards, and research tools that display temperature in Kelvin.
Weather apps, climate data, or environmental content that uses Kelvin.
Character maps, unit pickers, and Unicode docs for letterlike symbols.
💡 Best Practices
Do
- Use
KorKin HTML content - Use fonts that support Letterlike Symbols (U+212A)
- Set
<meta charset="utf-8"> - Pick one numeric style per project
- Add
aria-labelor nearby text (e.g. “Kelvin”) for accessibility
Don’t
- Expect a named HTML entity for U+212A
- Use CSS
\212Ainside HTML text nodes - Use fonts without Letterlike Symbols support
- Mix entity styles randomly in one file
Key Takeaways
Two HTML numeric references plus CSS for U+212A
K KFor CSS, use \212A in the content property
Unicode U+212A — KELVIN SIGN
Letterlike Symbols block; glyph K (K)
Previous: Jupiter (U+2643) Next: Khmer Currency Symbol Riel
❓ Frequently Asked Questions
K (hex), K (decimal), or \212A in CSS content. There is no named entity. All methods render K (K) when the font supports U+212A.U+212A (KELVIN SIGN). Letterlike Symbols block (U+2100–U+214F). Hex 212A, decimal 8490. SI unit symbol for thermodynamic temperature.K or K) go in markup. The CSS escape \212A is used in stylesheets, typically on ::before or ::after. Both render K (K).Explore More HTML Entities!
Discover 1500+ HTML character references — SI and letterlike symbols, math, science, and more.
8 people found this page helpful
