Tagged Questions
5
votes
1answer
280 views
Can I use iconv to convert multi-byte smart quotes to extended ASCII smart quotes?
I have some UTF-8 content that includes multi-byte smart quote characters. I've found that this code will easily convert those characters to ASCII straight quotes (ASCII code 34):
$content = ...
5
votes
7answers
677 views
What's the proper technical term for “high ascii” characters?
What is the technically correct way of referring to "high ascii" or "extended ascii" characters? I don't just mean the range of 128-255, but any character beyond the 0-127 scope.
Often they're ...
3
votes
1answer
321 views
Difficulties inherent in ASCII and Extended ASCII, and Unicode Compatibility?
What are the difficulties inherent in ASCII and Extended ASCII and how these difficulties are overcome by Unicode?
Can some one explain me the unicode compatibility?
And what does the terms ...
1
vote
3answers
815 views
Extended Ascii doesn't work in console!
For example
System.out.println("╚");
displays as a ?, same goes for System.out.println("\u255a");
Why doesn't this work? Stdout does indeed support these characters so I don't get it.
1
vote
2answers
452 views
Help with Extended ASCII/Encoding in PHP!
Good Evening folks.
This is my code:
static private function removeAccentedLetters($input){
for ($i = 0; $i < strlen($input); $i++) {
$input[$i]=self::simplify($input[$i]);
}
...
1
vote
3answers
240 views
Displaying the ≥ and ≤ ASCII characters in a C Application
I am currently writing a C application and I need to display the following symbols in the terminal : ≥ and ≤
Their ASCII character codes are 242 and 243 but I can't get them to be displayed in the ...
0
votes
1answer
45 views
What character encoding are the following German words using?
I'm trying to process a German word list and can't figure out what encoding the file is in. The 'file' unix command says the file is "Non-ISO extended-ASCII text". Most of the words are in ascii, but ...