Update list-ascii-table.ps1

This commit is contained in:
Markus Fleschutz 2023-07-03 20:36:03 +02:00
parent 65e833fc68
commit 8573fe09a9

View File

@ -20,26 +20,46 @@
"" ""
Write-Host "ASCII TABLE" -foregroundColor green Write-Host "ASCII TABLE" -foregroundColor green
"" ""
"Dec Oct Hex HTML Symbol Description" "Dec Oct Hex Binary HTML Symbol Description"
"--- --- --- ---- ------ -----------" "--- --- --- ------ ---- ------ -----------"
" 0 000 00 � NUL Null character" " 0 000 00 00000000 � NUL Null character"
" 1 001 01  SOH Start of Heading" " 1 001 01 00000001  SOH Start of Header"
" 2 002 02  STX Start of Text" " 2 002 02 00000010  STX Start of Text"
" 3 003 03  ETX End of Text" " 3 003 03 00000011  ETX End of Text"
" 4 004 04  EOT End of Transmission" " 4 004 04 00000100  EOT End of Transmission"
" 5 005 05  ENQ Enquiry" " 5 005 05 00000101  ENQ Enquiry"
" 6 006 06  ACK Acknowledge" " 6 006 06 00000110  ACK Acknowledge"
" 7 007 07  BEL Bell, Alert" " 7 007 07 00000111  BEL Bell"
" 8 010 08  BS Backspace" " 8 010 08 00001000  BS Backspace"
" 9 011 09 	 HT Horizontal Tab" " 9 011 09 00001001 	 HT Horizontal Tab"
" 10 012 0A 
 LF Line Feed" " 10 012 0A 00001010 
 LF Line Feed"
" 11 013 0B  VT Vertical Tabulation" " 11 013 0B 00001011  VT Vertical Tab"
" 12 014 0C  FF Form Feed" " 12 014 0C 00001100  FF Form Feed"
" 13 015 0D 
 CR Carriage Return" " 13 015 0D 00001101 
 CR Carriage Return"
" 14 016 0E  SO Shift Out" " 14 016 0E 00001110  SO Shift Out"
" 15 017 0F  SI Shift In" " 15 017 0F 00001111  SI Shift In"
" 16 020 10  DLE Data Link Escape" " 16 020 10 00010000  DLE Data Link Escape"
" 17 021 11  DC1 Device Control One (XON)" " 17 021 11 00010001  DC1 Device Control 1 (XON)"
" 18 022 12  DC2 Device Control Two" " 18 022 12 00010010  DC2 Device Control 2"
" 19 023 13  DC3 Device Control Three (XOFF)" " 19 023 13 00010011  DC3 Device Control 3 (XOFF)"
" 20 024 14 00010100  DC4 Device Control 4"
" 21 025 15 00010101  NAK Negative Acknowledge"
" 22 026 16 00010110  SYN Synchronize"
" 23 027 17 00010111  ETB End of Transmission Block"
" 24 030 18 00011000  CAN Cancel"
" 25 031 19 00011001  EM End of Medium"
" 26 032 1A 00011010  SUB Substitute"
" 27 033 1B 00011011  ESC Escape"
" 28 034 1C 00011100  FS File Separator"
" 29 035 1D 00011101  GS Group Separator"
" 30 036 1E 00011110  RS Record Separator"
" 31 037 1F 00011111  US Unit Separator"
" 32 040 20 00100000   space Space"
" 33 041 21 00100001 ! ! Exclamation mark"
" 34 042 22 00100010 " `" Double quote"
" 35 043 23 00100011 # # Number"
" 36 044 24 00100100 $ $ Dollar sign"
" 37 045 25 00100101 % % Percent"
" 38 046 26 00100110 & & Ampersand"
" 39 047 27 00100111 ' ' Single quote"
exit 0 # success exit 0 # success