Number System 'A' 0100 0001 (65) 0x41 bin-oct-hex.pdf
HTML: 2進制 8進制 10進制 16進制(new) 16進制

Test Bin 2 Oct 8 Dec 10 DoD 12 Hex 16
Bin 2   2 → 8 02 → 10   2 → 16
Oct 8 8 → 2   08 → 10   8 → 16
Dec 10 10 → 02 10 → 08   10 → 12 10 → 16
DoDeca 12     12 → 10    
Hex 16 16 → 2 16 → 8 16 → 10   測驗/理論課


Encoding 編碼

ASCII (American Standard Code for Information Interchange) by ASA, 1963

EBCDIC (Extended Binary-Coded Decimal Interchange Code) by IBM, 1964

ISO8859 Family by International Organization for Standardization

國標碼 GB (CN/SG) 1980

HZ (CN)

大五碼 Big-5 (TW/HK) 1984

char s[10]="0123";
s[0]=0xA4;
s[1]=0x41;
s[2]=0;
printf("%s\n",s);	// 乙

Big5 to GB

統一碼 unicode 1991 table python tutorial

Encoding Analysis

URI encoding