HTML Entity for New Sheqel Sign (₪)

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+20AA

What Is the New Sheqel Sign Entity?

New sheqel sign (₪) is the Currency Symbols character at Unicode U+20AA (NEW SHEQEL SIGN). It is the currency symbol for the Israeli new shekel (ISO code ILS). HTML5 defines no named entity for it.

Remember
Character     ₪
Unicode       U+20AA
Named entity  (none)
Hex entity    ₪
Decimal       ₪
CSS escape    \20AA

All of these produce the same glyph: ₪. Prefer a pasted ₪ in UTF-8 pages; use numeric or CSS forms when you need an escape.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character₪HTML text (UTF-8 default)
Named entitynoneNot defined in HTML5
Hex entity₪HTML markup
Decimal entity₪HTML markup
CSS escape\20AAStylesheet content

When to Use Which

SituationUse
UTF-8 prices / e-commerceType or paste ₪
Numeric entity required₪ or ₪
Generated prefix via ::before / ::aftercontent: "\20AA"
Currency code preferredWrite ILS (ISO 4217)
Looking for a named formNone — use hex or decimal instead

Live Preview

New sheqel sign rendered in common contexts.

Glyph ₪
Large glyph ₪
In a price ₪ 199.00
With entities Hex: ₪ | Decimal: ₪
Related ILS (code) · € (euro) · $ (dollar)

Complete HTML Example

One page that shows the new sheqel sign with hex, decimal, direct, and CSS forms. Use View Output or open the live editor.

Hex + Decimal + Direct + CSS

Four ways to produce ₪ in a single document (no named entity).

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>New Sheqel Sign (₪) in HTML</title>
  <style>
    #point::after {
      content: "\20AA";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x20AA;</p>
  <p>Using HTML Code: &#8362;</p>
  <p>Using Direct Character: ₪</p>
  <p id="point">Using CSS Entity: </p>
  <p>Price: ₪ 199.00</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+20AA → &#x20AA; in HTML. Reliable numeric form.

2. Decimal: same code point as 8362 → &#8362;. Same glyph.

3. Direct: paste ₪ in a UTF-8 file with <meta charset="UTF-8">.

4. CSS: use \20AA in content (not an HTML entity). #point::after appends that ₪ after the paragraph text.

Pitfalls & Tips

Common mistakes when working with the sheqel currency entity.

Named

No named entity

HTML5 has no &... name for U+20AA — use hex or decimal instead (unlike &euro; for €).

CSS vs HTML

Do not mix escapes

\20AA belongs in CSS. &#x20AA; / &#8362; belong in HTML.

Code vs glyph

₪ vs ILS

ILS is the ISO currency code. ₪ is the visual symbol. Use either; do not invent a fake named entity.

Spelling

Sheqel / shekel

Unicode uses “sheqel”; English often writes “shekel”. Both refer to the same currency symbol U+20AA.

Semicolon

End references

Always finish with ; — write &#8362;, not &#8362.

UTF-8

Declare charset

If you paste ₪ directly, serve the page as UTF-8 with <meta charset="UTF-8">.

Browser Support

New sheqel sign (U+20AA) and its entity forms (&#x20AA;, &#8362;, CSS \\20AA) are supported in all mainstream browsers. Glyph availability depends on the font.

✓ Universal support

New Sheqel Sign (&#x20AA;)

Paste ₪, or encode with hex, decimal, or CSS escape — same glyph everywhere. No named entity.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+20AA / entities Full support

Bottom line: Prefer a pasted ₪ in UTF-8 text. Use &#x20AA; / &#8362; when a numeric form is required, and \\20AA only inside CSS content.

Key Takeaways

  • Unicode: new sheqel is U+20AA (decimal 8362), Currency Symbols.
  • HTML: no named entity — use &#x20AA; or &#8362;.
  • CSS: use \20AA inside content for generated text.
  • Use: Israeli shekel (ILS) prices — glyph ₪ or code ILS.

One line: U+20AA → &#x20AA; / &#8362; / CSS \20AA (no named entity).

Frequently Asked Questions

Use &#x20AA; (hex), &#8362; (decimal), type ₪ in UTF-8, or the CSS escape \20AA in content. There is no HTML5 named entity for U+20AA.
U+20AA (NEW SHEQEL SIGN). Hex 20AA, decimal 8362. It belongs to Currency Symbols and represents the Israeli new shekel (ILS).
No. HTML5 does not define a named entity for this character. Use numeric references like &#8362; or &#x20AA; when you need an entity form.
Use it for Israeli prices, e-commerce, or financial content that shows the shekel symbol. Prefer a pasted ₪ in UTF-8 when possible. You can also write ILS when a currency code is clearer than a glyph.
HTML entities (&#8362; or &#x20AA;) go in markup. The CSS escape \20AA is used in stylesheets (usually in the content property of ::before/::after). Both render ₪.
ILS is the three-letter ISO code. ₪ is the currency glyph (U+20AA). Euro is U+20AC (&euro;), dollar is U+0024 — different symbols for different currencies.

Did you know?

New sheqel sign (₪) is Unicode U+20AA (decimal 8362) — NEW SHEQEL SIGN in Currency Symbols. HTML5 has no named entity — use &#x20AA; or &#8362;. It is the currency symbol for the Israeli new shekel (ISO ILS). In prices, place it before the amount (e.g. ₪ 199.00) when following common Israeli typography.

Next: Nj

Learn the HTML entity for the Nj digraph — the next character in this entity sequence.

Nj tutorial →

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