HTML Entity for New Sheqel Sign (₪)

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

What You'll Learn

How to display the New Sheqel sign (₪) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+20AA (NEW SHEQEL SIGN) in the Currency Symbols block (U+20A0–U+20CF)—the official currency symbol for the Israeli new shekel (ILS).

Render it with ₪, ₪, or CSS escape \20AA. There is no named HTML entity for U+20AA. In UTF-8 you can also type ₪ directly when your editor supports it.

⚡ Quick Reference — New Sheqel Sign

Unicode U+20AA

Currency Symbols block

Hex Code ₪

Hexadecimal reference

HTML Code ₪

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+20AA
Hex code       ₪
HTML code      ₪
Named entity   (none)
CSS code       \20AA
Currency       ILS (Israeli new shekel)
Related        U+0024 = dollar ($); U+20AA = sheqel (₪)
1

Complete HTML Example

This example demonstrates the New Sheqel sign (₪) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\20AA";
  }
 </style>
</head>
<body>
<p>New Sheqel Sign using Hexadecimal: &#x20AA;</p>
<p>New Sheqel Sign using HTML Code: &#8362;</p>
<p id="point">New Sheqel Sign using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The New Sheqel sign (₪) is widely supported when fonts include Currency Symbols (U+20A0–U+20CF):

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

👀 Live Preview

See the New Sheqel sign (₪) in pricing and financial contexts:

Price ₪ 199.00
Checkout total Total: ₪ 1,250
Large glyph
Currency codes Symbol ₪   ISO ILS
Numeric refs &#x20AA; &#8362; \20AA

🧠 How It Works

1

Hexadecimal Code

&#x20AA; uses the Unicode hexadecimal value 20AA to display the New Sheqel sign. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\20AA is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after for price prefixes.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+20AA sits in the Currency Symbols block (U+20A0–U+20CF). No named HTML entity—use numeric codes in markup.

Use Cases

The New Sheqel sign (₪) is commonly used in:

🛒 E-commerce

Product prices and checkout totals on Israeli online stores.

💰 Financial apps

Banking dashboards, account balances, and transaction lists in ILS.

📈 Pricing tables

SaaS plans, subscription tiers, and service quotes in shekels.

🌐 Currency converters

Exchange-rate widgets and travel finance tools listing ILS.

📄 Invoices & receipts

PDF and web invoices for businesses operating in Israel.

📝 News & media

Economic reports and articles referencing the Israeli shekel.

💡 Best Practices

Do

  • Use &#x20AA; or &#8362; consistently per project
  • Pair ₪ with the ISO code ILS for clarity in international contexts
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Use aria-label such as “Israeli new shekel” for screen readers
  • Test currency glyph rendering across browsers and fonts

Don’t

  • Expect a named HTML entity for U+20AA
  • Use padded Unicode notation like U+020AA—the correct value is U+20AA
  • Use \020AA in CSS—the correct escape is \20AA
  • Put CSS escape \20AA in HTML text nodes
  • Mix currency symbols (e.g. $ or €) with ₪ without clear locale context

Key Takeaways

1

Two HTML numeric references plus CSS for U+20AA

&#x20AA; &#8362;
2

For CSS, use \20AA in the content property

3

Unicode U+20AA — NEW SHEQEL SIGN

4

Currency Symbols block; glyph (₪)

5

No named entity—use numeric codes or UTF-8 literal in source files

❓ Frequently Asked Questions

Use &#x20AA; (hex), &#8362; (decimal), or \20AA in CSS content. There is no named entity. All methods render ₪ when the font supports U+20AA.
U+20AA (NEW SHEQEL SIGN). Currency Symbols block (U+20A0–U+20CF). Hex 20AA, decimal 8362. Used for the Israeli new shekel (ILS).
On Israeli e-commerce sites, financial dashboards, pricing tables, banking apps, currency converters, invoices, and any content displaying amounts in ILS.
HTML references (&#8362; or &#x20AA;) go directly in markup. The CSS escape \20AA is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
No. U+20AA has no named HTML entity. Use &#x20AA; or &#8362;, or type ₪ directly in UTF-8-encoded source files.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, math, science, 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