Metadata-Version: 2.1
Name: unicodex
Version: 6.6.6
Summary: Unicodes encoder, decoder & converter
Home-page: https://github.com/llawllet
Author: odi
Author-email: ivuxey@gmail.com
License: MIT
Project-URL: Bug Tracker, https://github.com/llawllet
Keywords: unicode,converter,unicodex
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

<div align="center">
<h1>Unicodex</h1>
Unicodes encoder, decoder & converter
</div>



<h2>Installation:</h2>

```bash
>>> python3 -m pip install unicodex
```

<h2>Examples:</h2>

```python
>>> from unicodex import Unicodex

>>> # Character to unicode
>>> c2u = Unicodex.chr(127914)

>>> # Unicode to character
>>> u2c = Unicodex.ord(c2u)

>>> # Encode text to unicode
>>> en = Unicodex.encode("Sample text", 666)

>>> # Decode unicode to text
>>> de = Unicodex.decode(en, 666)
```
