Getting 1, 2, 3 as enumeration in an HTML list is easy. What about Devanagari or Nepali numbers like १, २, ३?
- Apple
- Ball
- Cat
Turns out CSS's list-style-type
supports devanagari
as one of its options:
<style>
.devanagariList {list-style-type: devanagari;}
</style>
<ol class="devanagariList">
<li>Apple</li>
<li>Ball</li>
<li>Cat</li>
</ol>
Browser Support

Hey Edge, why so edgy?