ascii-cli

Crates.ioascii-cli
lib.rsascii-cli
version1.1.0
sourcesrc
created_at2024-03-25 17:30:15.383906
updated_at2024-03-25 17:30:15.383906
descriptionA small CLI for quickly viewing the ASCII table in your terminal
homepage
repositoryhttps://github.com/AtleSkaanes/ascii-cli
max_upload_size
id1185501
size933,958
(AtleSkaanes)

documentation

README

ASCII cli

This is a small CLI for quickly viewing the ascii table in your terminal!

Simple call the CLI with the table subcommand, to view the table

ascii table

Ascii Table Example

to get the table in base 16, or change the base by adding the argument:

-b {base}

You can also translate text strings to its ascii numbers, by using the to-num subcommand, like this:

ascii to-num hello world
68 65 6C 6C 6F  20  77 6F 72 6C 64

And you can do the opposite too, by using the to-char subcommand, like this:

ascii to-char 68 65 6C 6C 6F 20 77 6F 72 6C 64
hello world

Finally, you can use the what-is subcommand, to get more info about a specific character, like this

ascii what-is 7

7: BEL - Bell
Category: Control Character
Description: Triggers a beep

Commit count: 14

cargo fmt