File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments