"Extended Binary Coded Decimal Interchange Code (EBCDIC) is an 8-bit character encoding (code page) used on IBM mainframe operating systems such as z/OS, OS/390, VM and VSE, as well as IBM minicomputer operating systems such as OS/400 and i5/OS (see also Binary Coded Decimal)."
Source: http://en.wikipedia.org/wiki/EBCDIC
Let us consider the below example.
05 Number PIC 9.
Move 7 to Number.
Move 7 to Number.
My question is,
When the Move operation is performed, does the EBCDIC character 7 itself is the value that gets stored in the Memory or will its Base 10 equivalent value of 247 gets stored in the Memory or its Base 16 equivalent value of F7 gets stored in the Memory or its Base 2 equivalent value of 11110111 gets stored in Memory?
Your input is highly appreciated.
Thank You
LockIdea