看php的源码,在url.c的php_url_encode里看到了这个单词
#ifndef CHARSET_EBCDIC
查google
BCD (Binary Coded Decimal) 是一種以二進制數字代表十進制數字的方法。
它將每個十進制數目字 (0 1 2 3 4 5 6 7 8 9) 以一個二進制數字來代表,通常用 4 個位元來代表一個十進制數目字。
例如 6 是 0110,7 是 0111,所以 1024 就以 0001 0000 0010 0100 來表示。
http://www.webopedia.com/TERM/E/EBCDIC.html 的解释
Abbreviation of Extended Binary-Coded Decimal Interchange Code. Pronounced eb-sih-dik,
EBCDIC is an IBM code for representing characters as numbers. Although it is widely used on large IBM computers,
most other computers, including PCs and Macintoshes, use ASCII codes.
http://www-900.ibm.com/cn/support/viewdoc/detail?DocId=2222001000000
定制EBCDIC和GBK/GB2312的转换码表