thai property

CounterStyle thai
final

Thai (Siamese) numbering (e.g., ๑, ๒, ๓, ..., ๙๘, ๙๙, ๑๐๐).

Implementation

static final thai = CounterStyle.define(
  name: 'thai',
  system: System.numeric,
  symbols: [
    '\u0E50',
    '\u0E51',
    '\u0E52',
    '\u0E53',
    '\u0E54',
    '\u0E55',
    '\u0E56',
    '\u0E57',
    '\u0E58',
    '\u0E59'
  ],
  /* ๐ ๑ ๒ ๓ ๔ ๕ ๖ ๗ ๘ ๙ */
);