uchr

Crates.iouchr
lib.rsuchr
version0.0.2
sourcesrc
created_at2019-04-04 02:07:21.222462
updated_at2019-04-04 02:09:46.364655
descriptiontranslate char values to the characters themselves, and vice versa
homepage
repositoryhttps://github.com/g-s-k/uchr
max_upload_size
id125757
size3,241
(g-s-k)

documentation

README

uchr: "Unicode CHaRacter"

a CLI tool to quickly find out ASCII/Unicode values for characters, or look up code points by value.

Usage

  • 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

Installation

cargo install uchr

Commit count: 2

cargo fmt