HTML Entity for Kip Sign (₭)

What You'll Learn
How to display the Kip sign (₭) in HTML using hexadecimal, decimal, and CSS escape methods. The symbol is the currency sign for the Lao Kip.
It is U+20AD (KIP SIGN) in the Currency Symbols block (U+20A0–U+20CF). Use ₭, ₭, or CSS \20AD. There is no named HTML entity for this character.
⚡ Quick Reference — Kip Sign
U+20ADCurrency Symbols Unicode block
₭Hexadecimal reference
₭Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+20AD
Hex code ₭
HTML code ₭
Named entity (none)
CSS code \20AD
Meaning Lao Kip currency (₭)
Glyph ₭
Example 10,000 ₭Complete HTML Example
This example shows the Kip sign (U+20AD) 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: "\20AD";
}
</style>
</head>
<body>
<p>Kip Sign using Hexadecimal: ₭</p>
<p>Kip Sign using Decimal: ₭</p>
<p id="point">Kip Sign using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Kip sign (₭) is widely supported when fonts include the Currency Symbols block (U+20A0–U+20CF):
👀 Live Preview
See the Kip sign (₭) in pricing and financial contexts:
🧠 How It Works
Hexadecimal Code
₭ uses the Unicode hexadecimal value 20AD to display the Kip sign (₭).
Decimal HTML Code
₭ uses the decimal Unicode value 8365 for the same character.
CSS Entity
\20AD is used in CSS stylesheets in the content property, often on ::after following a base character in markup.
No Named Entity
U+20AD has no standard &...; named form. Use hex, decimal, or CSS escape only.
Same visual result
All three methods produce ₭ (₭). Unicode U+20AD is in the Currency Symbols block. Next: Lambda Stroke.
Use Cases
The Kip sign (₭) is commonly used in:
Online stores and product pages targeting Laos with prices in Kip.
Banking apps, balances, transfers, and reports showing Kip amounts.
Localized sites and apps for Lao users formatting currency in Kip.
Exchange tools and forex content listing or converting to/from Lao Kip.
Invoice templates, receipts, and accounting software for Lao Kip.
Currency reference tables, symbol pickers, and currency symbol docs.
💡 Best Practices
Do
- Use
₭or₭in HTML content - Use fonts that support the Currency Symbols block (U+20AD)
- Set
<meta charset="utf-8"> - Pick one numeric style per project
- Add
aria-labelor nearby text (e.g. “Lao Kip”) for accessibility - Pair with amounts (e.g. 10,000 ₭) following locale conventions
Don’t
- Expect a named HTML entity for U+20AD
- Use CSS
\20ADinside HTML text nodes - Use fonts without Currency Symbols support
- Mix entity styles randomly in one file
Key Takeaways
Two HTML numeric references plus CSS for U+20AD
₭ ₭For CSS, use \20AD in the content property
Unicode U+20AD — KIP SIGN
Currency Symbols block; glyph ₭ (₭)
Previous: Khmer Currency Symbol Riel (U+17DB) Next: Lambda Stroke
❓ Frequently Asked Questions
₭ (hex), ₭ (decimal), or \20AD in CSS content. There is no named entity. All methods render ₭ (₭) when the font supports U+20AD.U+20AD (KIP SIGN). Currency Symbols block (U+20A0–U+20CF). Hex 20AD, decimal 8365. Official currency sign for the Lao Kip.₭ or ₭) go in markup. The CSS escape \20AD is used in stylesheets, typically on ::before or ::after. Both render ₭ (₭).Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, localization, and multilingual content.
8 people found this page helpful
