Crates.io | uchr |
lib.rs | uchr |
version | 0.0.2 |
source | src |
created_at | 2019-04-04 02:07:21.222462 |
updated_at | 2019-04-04 02:09:46.364655 |
description | translate char values to the characters themselves, and vice versa |
homepage | |
repository | https://github.com/g-s-k/uchr |
max_upload_size | |
id | 125757 |
size | 3,241 |
a CLI tool to quickly find out ASCII/Unicode values for characters, or look up code points by value.
uchr a
tells you that the ASCII character "a" corresponds to code point 97.uchr foobar
tells you that the code points for each character in the string "foobar" are,
respectively: 102, 111, 111, 98, 97, and 114.uchr 123
tells you that code point 123 represents an opening curly brace character "{"uchr 200..210
tells you that the half-open range of code points from 200 (inclusive) to 210
(exclusive) represents the characters "ÈÉÊËÌÍÎÏÐÑ".You can pass as many of these arguments in as desired, e.g. uchr a foobar 277 ɘ 300..325
cargo install uchr