HTML Entity for Turkish Lira Sign (₺)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+20BA

What You'll Learn

How to display the Turkish Lira Sign (₺) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+20BA (TURKISH LIRA SIGN) in the Currency Symbols block (U+20A0–U+20CF)—the official symbol for the Turkish lira (TRY), introduced in 2012.

Render it with ₺, ₺, or CSS escape \20BA. There is no named HTML entity. Do not confuse ₺ with ₤ (generic lira sign, U+20A4) or ₮ (tugrik, U+20AE).

⚡ Quick Reference — Turkish Lira Sign

Unicode U+20BA

Currency Symbols

Hex Code ₺

Hexadecimal reference

HTML Code ₺

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+20BA
Hex code       ₺
HTML code      ₺
Named entity   (none)
CSS code       \20BA
Block          Currency Symbols (U+20A0–U+20CF)
Currency       Turkish lira (TRY)
Related        U+20A4 = Lira (₤), U+20AE = Tugrik (₮)
1

Complete HTML Example

This example demonstrates the Turkish Lira Sign (₺) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\20BA";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x20BA;</p>
<p>Using HTML Code: &#8378;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Turkish Lira Sign is supported in all modern browsers when fonts include Currency Symbols glyphs:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Turkish Lira Sign (₺) in pricing and currency context:

Price display ₺ 1 250,00
Large glyph
vs other currencies ₺ lira   ₤ generic lira   ₮ tugrik   ₽ ruble
Numeric refs &#x20BA; &#8378; \20BA

🧠 How It Works

1

Hexadecimal Code

&#x20BA; uses the Unicode hexadecimal value 20BA to display the Turkish Lira Sign. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8378; uses the decimal Unicode value 8378 to display the same character.

HTML markup
3

CSS Entity

\20BA is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+20BA in the Currency Symbols block. No named entity. Previous: Tugrik Sign. Next: Turned Ampersand.

Use Cases

The Turkish Lira Sign (₺) commonly appears in:

💰 Financial Sites

Banking apps and investment platforms showing TRY amounts.

💳 E-commerce

Online stores and checkout flows priced in Turkish lira.

🌐 Currency Converters

Exchange-rate tools and financial calculators.

🇹🇷 Turkish Markets

Local business sites and regional content for Turkey.

✈ Travel Booking

Hotels, flights, and tours priced in lira.

📚 Education

Currency tutorials and international finance content.

💡 Best Practices

Do

  • Use &#x20BA; or &#8378; for the lira glyph
  • Pair with lang="tr" when content is in Turkish
  • Set charset="UTF-8" on all HTML documents
  • Add aria-label for screen readers on price-only displays
  • Pick one entity style per project for consistency

Don’t

  • Confuse ₺ (Turkish lira) with ₤ (generic lira sign)
  • Assume every font renders ₺ correctly on older devices
  • Put CSS escape \20BA directly in HTML text nodes
  • Expect a named HTML entity for U+20BA—use numeric references
  • Use HTML entities in JS (use \u20BA instead)

Key Takeaways

1

Two HTML references both render ₺

&#x20BA; &#8378;
2

For CSS stylesheets, use the escape in the content property

\20BA
3

Unicode U+20BA — TURKISH LIRA SIGN (TRY)

4

No named entity—use numeric references or CSS escape

5

Currency Symbols block (U+20A0–U+20CF)

❓ Frequently Asked Questions

Use &#x20BA; (hex), &#8378; (decimal), or \20BA in CSS content. There is no named HTML entity. All three produce ₺.
U+20BA (TURKISH LIRA SIGN). Currency Symbols block (U+20A0–U+20CF). Hex 20BA, decimal 8378. Official symbol for the Turkish lira (TRY).
For financial websites, e-commerce, currency converters, Turkish market sites, travel platforms, and any content displaying prices in lira.
HTML numeric references (&#8378; or &#x20BA;) go directly in markup. The CSS escape \20BA is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover common ASCII, Latin-1, and select symbols. Characters like ₺ in the Currency Symbols block use numeric hex or decimal references—standard practice for currency symbols.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, math operators, punctuation, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful