Metadata-Version: 2.2
Name: nk100
Version: 1.0.0
Summary: Layered Unicode base-100000 numeral system using Hangul, Hanja, and CJK extensions.
Home-page: https://github.com/dzbuit/nk100
Author: blueradiance
Author-email: none@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

# nk100

Layered Unicode Base-100000 numeral system.

- Top 30,000 characters: Hangul + Hanja (human-readable)
- Bottom 70,000 characters: CJK Extensions (machine-readable only)

```python
import nk100

encoded = nk100.encode_nk100(98765432109876543210)
decoded = nk100.decode_nk100(encoded)

print(encoded)  # may include some squares (□)
print(decoded)  # 98765432109876543210
```
