https://github.com/polymeilex/dehumanize
Dehumanize text binary data into raw bytes
https://github.com/polymeilex/dehumanize
Last synced: 10 months ago
JSON representation
Dehumanize text binary data into raw bytes
- Host: GitHub
- URL: https://github.com/polymeilex/dehumanize
- Owner: PolyMeilex
- License: mit
- Created: 2025-07-28T16:36:44.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2025-07-28T16:49:50.000Z (11 months ago)
- Last Synced: 2025-08-16T16:54:00.982Z (10 months ago)
- Language: Rust
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dehumanize CLI
[](https://crates.io/crates/dehumanize)
Are you tired of those pesky humans supplying you binary data in human-readable formats?
Dehumanize can help you translate the data to a format that you can understand (aka. raw bytes).
```sh
echo "FFFF" | dehumanize --hex
echo "FF FF" | dehumanize --hex --separator " "
echo "0xFF, 0xFF" | dehumanize --hex --separator ","
echo "255, 255" | dehumanize --separator ","
```