I am running:
I receive output upto ASCII Code 127, but at 128 and above the output is a null box character.
Examining the code point definition, the "original ASCII encoding system contains only 128 code points and thus can represent only 128 characters. Historically, the 128 additional bytes of
extended ASCII have been encoded...".
While CHAR() function supports a byte input ranging from 0 to 255, it appears not to have the last 128 encodings.
Can this be confirmed?
FWIW - uchar(8224) will provide the dagger...
Thanks!
- Stata MP v14.0
- update level 05May2015
- Windows 7 Professional
Code:
forval i = 0(1)255 { di "ASCII Code `i': " char(`i') }
Examining the code point definition, the "original ASCII encoding system contains only 128 code points and thus can represent only 128 characters. Historically, the 128 additional bytes of
extended ASCII have been encoded...".
While CHAR() function supports a byte input ranging from 0 to 255, it appears not to have the last 128 encodings.
Can this be confirmed?
FWIW - uchar(8224) will provide the dagger...
Thanks!
Comment