https://github.com/matmoore/string-inspector
A command line utility to inspect unicode strings
https://github.com/matmoore/string-inspector
Last synced: 4 months ago
JSON representation
A command line utility to inspect unicode strings
- Host: GitHub
- URL: https://github.com/matmoore/string-inspector
- Owner: MatMoore
- License: mit
- Created: 2019-07-11T17:00:30.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-06-13T20:28:00.000Z (almost 3 years ago)
- Last Synced: 2025-04-07T23:16:28.564Z (about 1 year ago)
- Language: Rust
- Homepage:
- Size: 54.7 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# String inspector 🔍
[](https://circleci.com/gh/MatMoore/string-inspector)
A command line utility to inspect unicode strings
## How to install
`cargo install string-inspector`
## Usage
`string-inspector hello world 💩`
Example output:
```
[utf-8]
bytes: 68 65 6c 6c 6f 20 77 6f 72 6c 64 20 f0 9f 92 a9
chars: h e l l o w o r l d 1f4a9
hello world 💩
```
See `string-inspector -h` for detailed usage.
## Library usage
See [documentation](https://docs.rs/string-inspector/0.0.1/string_inspector/).
## Versioning
This project follows [Semantic Versioning](https://semver.org/).
## Contributing
All contributions are welcome, but issues tagged with either of the following are good places to start:
- [Good first issue](https://github.com/MatMoore/string-inspector/labels/good%20first%20issue)
- [Help wanted](https://github.com/MatMoore/string-inspector/labels/help%20wanted)
See [CONTRIBUTING.md](CONTRIBUTING.md) for more details.
## License
All code is free to use under the [MIT license](LICENSE)