A JSON list of all the Unicode Range Names and their hex/decimal range numbers.
npm install unicode-range-json> A list of all the Unicode Range Names and their hex/decimal range numbers.
This module simply exposes the unicode-ranges.json file.
```
$ npm install --save unicode-range-json
`js
const unicodeRanges = require('unicode-range-json');
console.log(unicodeRanges);
/*
{
"category": "Control Character",
"hexrange": ["0000", "001F"],
"range": [0, 31]
},
{
"category": "Basic Latin",
"hexrange": ["0020", "007F"],
"range": [32, 127]
},
...
*/
`
A JSON object with following information about the Unicode Ranges:
- category : (String) The range category namehexrange
- : (Array) The hexadecimal number rangerange
- : (Array)` The decimal number range
Please open an issue or pull request of you discover any of the values or ranges to be incorrect. Thanks!
- unicode-range Get the category range name of any Unicode value. U+3071 ➝ Hiragana
MIT © Michael Wuergler