Skip to content

Commit b921382

Browse files
committed
2 parents 49df86b + eb23dd3 commit b921382

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

README.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# ASCII TABLE
2+
3+
## Overview
4+
AsciiTable shows octal, hexadecimal, and decimal representations of ascii characters. It supports all 7-bit ASCII characters.
5+
![Capture](https://github.com/ManojTGN/ascii-table/assets/42494649/bb0fc8f0-6163-4cc9-a1b4-4364950295e2)
6+
7+
## Features
8+
- Converts ASCII characters to octal, hexadecimal, and decimal values.
9+
- Simple and lightweight command-line interface.
10+
- Supports the full range of 256 ASCII characters.
11+
12+
## Installation
13+
```bash
14+
git clone https://github.com/ManojTGN/ascii-table.git
15+
cd ascii-table
16+
make
17+
```
18+
19+
## Usage
20+
```bash
21+
22+
ascii [characters...] [..options]
23+
24+
```
25+
26+
#### Available Options:
27+
`--all` shows all available ascii codes\
28+
`--digits` shows all digits ascii codes\
29+
`--alphas` shows all alphabets ascii codes
30+
31+
`--octa` shows only octa in output table\
32+
`--dec` shows only dec in output table\
33+
`--hex` shows only hex in output table
34+
35+
`--asc` shows output table in ascending order\
36+
`--des` shows output table in desending order

0 commit comments

Comments
 (0)