top

Chinese Numerals

Buy me a coffee Build & Deploy Open in unpkg npm version Coverage Status

Lowercase Chinese numerals

0 1 2 3 4 5 6 7 8 9 10 100 1000 10000 108 1012 1016 1020 1024 1028 1032 1036 1040 1044 1048

Uppercase Chinese numerals

0 1 2 3 4 5 6 7 8 9 10 100 1000 10000 108 1012 1016 1020 1024 1028 1032 1036 1040 1044 1048

Heavenly Dry(天干地支)

1 2 3 4 5 6 7 8 9 10

Installation

This package is ESM only: Node 12+ is needed to use it and it must be import instead of require.

npm install @wcj/chinese-numerals

Usage

import { lowercase, uppercase, heavenlyDry } from "@wcj/chinese-numerals";

console.log(lowercase)     // => ['〇', '一', '二', '三', '四', ... ]
console.log(lowercase[3])  // => '三'

console.log(uppercase)     // => ['零', '壹', '貳', '參', '肆', ... ]
console.log(uppercase[2])  // => '貳'

console.log(heavenlyDry)   // => ['甲', '乙', '丙', '丁', '戊', '己', ... ]
console.log(heavenlyDry[2 - 1])  // => '乙'
import lowercase from "@wcj/chinese-numerals/lowercase.json";
import uppercase from "@wcj/chinese-numerals/uppercase.json";
import heavenlyDry from "@wcj/chinese-numerals/heavenly-dry.json";

console.log(lowercase)     // => ['〇', '一', '二', '三', '四', ... ]
console.log(lowercase[3])  // => '三'
console.log(uppercase)     // => ['零', '壹', '貳', '參', '肆', ... ]
console.log(uppercase[2])  // => '貳'
console.log(heavenlyDry[2 - 1])  // => '乙'

Contributors

As always, thanks to our amazing contributors!

Made with contributors.

License

Licensed under the MIT License.