https://github.com/kgabis/numcon
Number conversion utilities (bin, hex, dec)
https://github.com/kgabis/numcon
Last synced: 7 months ago
JSON representation
Number conversion utilities (bin, hex, dec)
- Host: GitHub
- URL: https://github.com/kgabis/numcon
- Owner: kgabis
- Created: 2018-11-04T23:42:31.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-05T19:54:56.000Z (almost 7 years ago)
- Last Synced: 2025-01-28T08:54:53.523Z (8 months ago)
- Language: Python
- Size: 1000 Bytes
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## About
Number conversion utilities.## Usage
```
> dec 10
DEC: 10
HEX: 0A
BIN: 00001010
``````
> hex deadbeef
DEC: 3735928559
HEX: DE AD BE EF
BIN: 11011110 10101101 10111110 11101111
``````
> bin 1010 0101
DEC: 10
HEX: 0A
BIN: 00001010
```## License
[The MIT License (MIT)](http://opensource.org/licenses/mit-license.php)