This articleneeds additional citations forverification. Please helpimprove this article byadding citations to reliable sources. Unsourced material may be challenged and removed. Find sources: "EBCDIC" – news ·newspapers ·books ·scholar ·JSTOR(January 2019) (Learn how and when to remove this message) |
| Classification | 8-bitbasic Latin encodings (non‑ASCII) |
|---|---|
| Preceded by | BCD |
Extended Binary Coded Decimal Interchange Code[1][2] (EBCDIC;[1]/ˈɛbsɪdɪk/) is an eight-bitcharacter encoding used mainly onIBM mainframe andIBMmidrange computer operating systems. It descended from the code used withpunched cards and the correspondingsix-bit binary-coded decimal code used with most of IBM'scomputer peripherals of the late 1950s and early 1960s.[3] It is supported by various non-IBM platforms, such asFujitsu-Siemens'BS2000/OSD, OS-IV, MSP, and MSP-EX, theSDS Sigma series,UnisysVS/9, UnisysMCP andICLVME.

EBCDIC was devised in 1963 and 1964 byIBM and was announced with the release of theIBM System/360 line of mainframecomputers. It is an eight-bit character encoding, developed separately from the seven-bitASCII encoding scheme. It was created to extend the existingBinary-Coded Decimal (BCD) Interchange Code, orBCDIC, which itself was devised as an efficient means of encoding the twozone andnumber punches onpunched cards into six bits. The distinct encoding of 's' and 'S' (using position 2 instead of 1) was maintained from punched cards where it was desirable not to have hole punches too close to each other to ensure the integrity of the physical card.[4][failed verification]
While IBM was a chief proponent of the ASCII standardization committee,[5] the company did not have time to prepare ASCII peripherals (such as card punch machines) to ship with its System/360 computers, so the company settled on EBCDIC.[3] The System/360 became wildly successful, together with clones such asRCA Spectra 70,ICL System 4, and Fujitsu FACOM, thus so did EBCDIC.
All IBM's mainframeoperating systems, and itsIBM i operating system formidrange computers, use EBCDIC as their inherent encoding[6] (with toleration for ASCII, for example,ISPF inz/OS can browse and edit both EBCDIC and ASCII encoded files). Software can translate to and from encodings, and modern mainframes (such asIBM Z) include processor instructions, at the hardware level, to accelerate translation between character sets. Modern z/OS compilers for the C and C++ languages onIBM Z mainframes, and earlierOS/390 C and C++ compilers onIBM System/390 mainframes, support a POSIX-compatible execution environment that makes use of ASCII by default.[7]
Not all operating systems running on IBM hardware use EBCDIC;IBM AIX,Linux on IBM Z, andLinux on Power all use ASCII, as do all operating systems that run on theIBM Personal Computer and its successors.
This sectionneeds additional citations forverification. Please helpimprove this article byadding citations to reliable sources in this section. Unsourced material may be challenged and removed.(November 2022) (Learn how and when to remove this message) |
There were numerous difficulties to writing software that would work in both ASCII and EBCDIC.
for(c='A';c<='Z';++c)putchar(c); would print the alphabet from A to Z if ASCII is used, but print 41 characters (including a number of unassigned ones) in EBCDIC.There are hundreds of EBCDIC code pages based on the original EBCDIC character encoding; there are a variety of EBCDICcode pages intended for use in different parts of the world, including code pages for non-Latin scripts such as Chinese, Japanese (e.g., EBCDIC 930, JEF, and KEIS), Korean, and Greek (EBCDIC 875). There is also a huge number of variations with the letters swapped around for no discernible reason.[citation needed]
The table below shows the "invariant subset"[10] of EBCDIC, which are characters thatshould have the same assignments on all EBCDIC code pages that use the Latin alphabet. (This includes most of theISO/IEC 646 invariant repertoire, except theexclamation mark.) It also shows (in gray) missing ASCII and EBCDIC punctuation, located where they are in Code Page 37 (one of the code page variants of EBCDIC). The blank cells are filled with region-specific characters in the variants, but the characters in gray are often swapped around or replaced as well. Like ASCII, the invariant subset works only for languages using only theISO basic Latin alphabet, such as English.
Following are the definitions of EBCDIC control characters which either do not map onto theASCII control characters, or have additional uses. When mapped to Unicode, these are mostly mapped to C1 control character codepoints in a manner specified by IBM's Character Data Representation Architecture (CDRA).[11][12]
Although the default mapping of New Line (NL) corresponds to the ISO/IEC 6429 Next Line character (NEL, U+0085, the behaviour of which is also specified, but not required, in Unicode Annex 14),[13] most of these C1-mapped controls match neither those in theISO/IEC 6429 C1 set, nor those in other registered C1 control sets such asISO 6630.[14] Although this effectively makes the non-ASCII EBCDIC controls a unique C1 control set, they are not among the C1 control sets registered in theISO-IR registry,[15] meaning that they do not have an assigned control set designation sequence (as specified byISO/IEC 2022, and optionally permitted inISO/IEC 10646 (Unicode)).[16]
Besides U+0085 (Next Line), the Unicode Standard does not prescribe an interpretation of C1 control characters, leaving their interpretation to higher level protocols (it suggests, but does not require, their ISO/IEC 6429 interpretations in the absence of use for other purposes),[17] so this mapping is permissible in, but not specified by, Unicode.
| Mnemonic | EBCDIC | CDRA pairing[11][12] | Name | Description[18] |
|---|---|---|---|---|
| SEL | 04 | 009C | Select | Device control character taking a single-byte parameter. |
| PF | Punch Off | Listed in this location byGOST 19768-93.[19] | ||
| RNL | 06 | 0086 | Required New Line | Line-break resettingIndent Tab mode |
| LC | Lower Case | Listed in this location byGOST 19768-93.[19] | ||
| GE | 08 | 0097 | Graphic Escape | Non-locking shift that changes the interpretation of the following character (see e.g.Code page 310). Compare ISO/IEC 6429'sSS2 (008E). |
| SPS | 09 | 008D | Superscript | Begin superscript or undo subscript. Compare ISO/IEC 6429'sPLU (008C). |
| RPT | 0A | 008E | Repeat | Switch to an operation mode repeating a print buffer |
| SMM | Start of Manual Message | Listed in this location byGOST 19768-93.[19] | ||
| RES/ENP | 14 | 009D | Restore, Enable Presentation | Resume output (afterBYP/INP) |
| NL | 15 | 0085 (000A) | New Line | Line break. Default mapping (0085) matches ISO/IEC 6429'sNEL. Mappings sometimes swapped with Line Feed (EBCDIC 0x25) in accordance with UNIX line breaking convention.[11] |
| POC | 17 | 0087 | Program Operator Communication | Followed by two one-byte operators that identify the specific function, for example a light or function key. Contrast with ISO/IEC 6429'sCSI (009B),OSC (009D) andAPC (009F). |
| IL | Idle | Listed in this location byGOST 19768-93.[19] | ||
| UBS | 1A | 0092 | Unit Backspace | A fractional backspace. |
| CC | Cursor Control | Listed in this location byGOST 19768-93.[19] | ||
| CU1 | 1B | 008F | Customer Use One | Not used by IBM; for customer use. |
| IUS/ITB | 1F | 001F | Interchange Unit Separator, Intermediate Transmission Block | Either used as an information separator to terminate a block called a "unit" (asin ASCII; see alsoIR), or used as a transmission control code to delimit the end of an intermediate block. |
| DS | 20 | 0080 | Digit Select | Used by S/360 CPU edit (ED) instruction |
| SOS | 21 | 0081 | Start of Significance | Used by S/360 CPU edit (ED) instruction. (Note: different from ISO/IEC 6429'sSOS; where distinguishing them is necessary, IBM abbreviates Start of Significance asSOS. (with a dot) and Start of String asSOS, otherwise they are abbreviated the same.)[20] |
| FS,[18] FDS[19] | 22 | 0082 | Field Separator | Used by S/360 CPU edit (ED) instruction. (Note:(Interchange) File Separator, as abbreviated FS in ASCII, is at 0x1C and abbreviated IFS.)[18] |
| WUS | 23 | 0083 | Word Underscore | Underscores the immediately preceding word. Contrast with ISO/IEC 6429'sSGR. |
| BYP/INP | 24 | 0084 | Bypass, Inhibit Presentation | De-activates output, i.e. ignores all graphical characters and control characters besides transmission control codes and RES/ENP, until the nextRES/ENP. |
| SA | 28 | 0088 | Set Attribute | Marks the beginning of a fixed-length device specific control sequence. Deprecated in favour ofCSP. |
| SFE | 29 | 0089 | Start Field Extended | Marks the beginning of a variable-length device specific control sequence. Deprecated in favour ofCSP. |
| SM/SW | 2A | 008A | Set Mode, Switch | Device specific control that sets a mode of operation, such as a buffer switch. |
| CU2 | 2B | 008B | Customer Use Two | This appears in some specifications, such asGOST 19768-93;[19] newer IBM specifications for EBCDIC control codes list only CU1 and CU3 as customer-use, and use this position forCSP.[18] |
| CSP | Control Sequence Prefix | Marks the beginning of a variable-length device specific control sequence. Followed by a class byte specifying a category of control function, a count byte giving the sequence length (including count and type bytes, but not the class byte or initial CSP), a type byte identifying a control function within that category, and zero or more parameter bytes. Contrast with ISO/IEC 6429'sDCS (0090) andCSI (009B). | ||
| MFA | 2C | 008C | Modify Field Attribute | Marks the beginning of a variable-length device specific control sequence. Deprecated in favour ofCSP. |
| 30 | 0090 | (reserved) | Reserved for future use by IBM | |
| 31 | 0091 | (reserved) | Reserved for future use by IBM | |
| IR | 33 | 0093 | Index Return | Either move to start of next line (see alsoNL), or terminate an information unit (see alsoIUS/ITB). |
| PP | 34 | 0094 | Presentation Position | Followed by two one-byte parameters (firstly function, secondly number of either column or line) to set the current position. Contrast with ISO/IEC 6429'sCUP and HVP. |
| PN | Punch On | Listed in this location byGOST 19768-93.[19] | ||
| TRN | 35 | 0095 | Transparent | Followed by one byte parameter that indicates the number of bytes of transparent data that follow. |
| RST | Reader Stop | Listed in this location byGOST 19768-93.[19] | ||
| NBS | 36 | 0096 | Numeric Backspace | Move backward the width of one digit. |
| UC | Upper Case | Listed in this location byGOST 19768-93.[19] | ||
| SBS | 38 | 0098 | Subscript | Begin subscript or undo superscript. Compare ISO/IEC 6429'sPLD (008B). |
| IT | 39 | 0099 | Indent Tab | Indents the current and all following lines, untilRNL orRFF is encountered. |
| RFF | 3A | 009A | Required Form Feed | Page-break resettingIndent Tab mode. |
| CU3 | 3B | 009B | Customer Use Three | Not used by IBM; for customer use. |
| 3E | 009E | (reserved) | Reserved for future use by IBM | |
| EO | FF | 009F | Eight Ones | All ones character used as filler |
The following code pages have the fullLatin-1 character set (ISO/IEC 8859-1). The first column gives the original code page number. The second column gives the number of the code page updated with theeuro sign (€) replacing the universalcurrency sign (¤) (or in the case of EBCDIC 924, with the set changed to matchISO 8859-15)
Different countries have different code pages because these code pages originated as code pages with country-specific character repertoires, and were later expanded to contain the entire ISO 8859-1 repertoire, meaning that a given ISO 8859-1 character may have differentcode point values in different code pages. They are known asCountry Extended Code Pages (CECPs).[21]
| CCSID | Euro update | Countries |
|---|---|---|
| 037 | 1140 | Australia, Brazil, Canada, New Zealand, Portugal, South Africa, USA |
| 273 | 1141 | Austria, Germany |
| 277 | 1142 | Denmark, Norway |
| 278 | 1143 | Finland, Sweden |
| 280 | 1144 | Italy |
| 284 | 1145 | Latin America, Spain |
| 285 | 1146 | Ireland, United Kingdom |
| 297 | 1147 | France |
| 500 | 1148 | International |
| 871 | 1149 | Iceland |
| 1047 | 924 | Open Systems (MVSC compiler) |
This sectionappears to contradict another section of this article. Please see thetalk page for more information.(May 2024) |
Open-source software advocate and software developerEric S. Raymond writes in hisJargon File that EBCDIC was loathed byhackers, by which he meant[22] members of a subculture of enthusiastic programmers. What is known asvendor lock-in today, is jokingly criticized in The Jargon File with the following definition:[23][24]
EBCDIC: /eb´s@·dik/, /eb´see`dik/, /eb´k@·dik/, n.[abbreviation, Extended Binary Coded Decimal Interchange Code] An alleged character set used on IBM dinosaurs. It exists in at least six mutually incompatible versions, all featuring such delights as non-contiguous letter sequences and the absence of several ASCII punctuation characters fairly important for modern computer languages (exactly which characters are absent varies according to which version of EBCDIC you're looking at). IBM adapted EBCDIC from punched card code in the early 1960s and promulgated it as a customer-control tactic (seeconnector conspiracy), spurning the already established ASCII standard. Today, IBM claims to be anopen-systems company, but IBM's own description of the EBCDIC variants and how to convert between them is still internally classified top-secret, burn-before-reading. Hackers blanch at the veryname of EBCDIC and consider it a manifestation of purest evil.
— The Jargon file 4.4.7
EBCDIC design was the source of many jokes. One such joke, found in the Unixfortune file of4.3BSD Reno (1990)[25] went:
Professor: "So the American government went to IBM to come up with anencryption standard, and they came up with—"
Student: "EBCDIC!"
References to the EBCDIC character set are made in the 1979 computer game seriesZork. In the "Machine Room" inZork II, EBCDIC is used to imply an incomprehensible language:
This is a large room full of assorted heavy machinery, whirring noisily. The room smells of burned resistors. Along one wall are three buttons which are, respectively, round, triangular, and square. Naturally, above these buttons are instructions written in EBCDIC...
In 2021, it became public that a Belgian bank was still using EBCDIC internally in 2019. A customer insisted that the correct spelling of his surname included anumlaut, which the bank omitted, and the customer filed a complaint citing the guarantee in theGeneral Data Protection Regulation of the right to timely "rectification of inaccurate personal data." The bank's argument included the fact that their system used EBCDIC, as well as that it did not support letters withdiacritics (or lower case, for that matter). The appeals court ruled in favor of the customer.[26][27]
...but their printers and punches were not ready to handle ASCII, and IBM just HAD to announce.
The 64 control characters...the ASCII DELETE character (U+007F)...are mapped respecting EBCDIC conventions, as defined in IBM Character Data Representation Architecture, CDRA, with one exception -- the pairing of EBCDIC Line Feed and New Line control characters are swapped from their CDRA default pairings to ISO/IEC 6429 Line Feed (U+000A) and Next Line (U+0085) control characters
{{citation}}: CS1 maint: numeric names: authors list (link)For other C0 or C1 sets, the final octet F shall be obtained from the International Register of Coded Character Sets....If such an escape sequence appears within a code unit sequence conforming to this International Standard, it shall be padded in accordance with Clause 11.
{{citation}}: CS1 maint: numeric names: authors list (link)The mnemonic for the Start of Significance control character in EBCDIC has been modified to include a dot (.) at the end (SOS.). This has been done to distinguish it from the SOS mnemonic used in ISO-8 for the Start of String control character. The dot does not alter the property of the control in any way.