An open API service indexing awesome lists of open source software.

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)

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)