The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
64 views

How to print Extended ASCII characters 127 to 160 in through a C program?

I am trying below code to print all the ASCII characters, but it does not print anything for 127 to 160. I know they are Control Chracters set or some Latin/ Spanish characters. If the same characters ...
0
votes
0answers
61 views

Converting an NSString with ASCII characters > 127

I am at a road block, though I have used Stack Overflow to get me about 90% of the way. My ultimate goal is to pass an NSString (e.g. @"51 EC") which is two space-separated hex codes. I use the ...
0
votes
1answer
77 views

Extended ASCII character C++

Why can't I test for the ASCII value I assign to symbol (250) in this code? It seems weird to be testing for -6 when that is not what I assigned to symbol. #include <iostream> using namespace ...
4
votes
1answer
87 views

Extended ASCII Character Conversion

How can I convert Extended ASCII characters such as: "æ, ö or ç" into non-extended ASCII characters (a,o,c) using python? The way it works should be that if it takes "A, Æ ,Ä" as input, It returns A ...
1
vote
1answer
120 views

Extended ASCII character in MATLAB plot label/title

I need to put word "naïve" on a plot, and save it as PNG and PDF. Sometime it's in a title, or in tick label. Whatever I've tried I always get right arrow symbol (png) or empty space (pdf) instead of ...
0
votes
0answers
65 views

ASCII conversion in iOS

There is Windows-1252 ascii system that is being followed every where. But there is a mix of characters in iPhone programming. When I try printing them, This is how it appears in Win-1252 for ...
-1
votes
2answers
121 views

What's an OSX command line tool or simple app to remove extended ASCII characters from source text files? [closed]

I've been cutting and pasting some code snippets from an Amazon Kindle eBook into a text editor (JetBrains PhpStorm), and apparently each time it comes with some extended (>127) ASCII characters. Is ...
0
votes
3answers
491 views

Converting extended ASCII string to hindi text

I am receiving a string text via USB communication in android in form of extended ASCII characters like String receivedText = "5286T11ɬ ªË ¦¿¯¾ ¯¾ ɬ ¨¬°:A011605286 ª¿ª ¾®:12:45 ...
0
votes
1answer
132 views

Generating Extended ASCII in R on a Linux platform

I was working on a windows platform till now, and my code to get the Extended ascii characters was this: extendedascii=rawToChar(as.raw(seq(128,255,by=1)),multiple=TRUE) This gave me a vector with ...
0
votes
1answer
769 views

Convert Unicode characters to extended ASCII

I have some binary data that had to be percent encoded to transfer to a remote service via a length-restricted query string parameter. When it comes back to me some of the values are encoded like ...
1
vote
2answers
272 views

Extended ASCII characters show up as junk in MySQL db is inserted through perl

I have a MySQL 'articles' table and I am trying to make the following insert using SQLyog. insert into articles (id,title) values (2356606,'Jérôme_Lejeune'); This works fine and the data shows fine ...
0
votes
1answer
291 views

Why does str_replace not correctly replace these extended ascii characters?

This is a UTF-8 encoded source file. I must be missing something obvious, but I've tried all the permutations I can think of. <?php $bad = array( chr(130), chr(145), chr(146), chr(147), ...
1
vote
2answers
893 views

Extended ascii characters search in SQL Server

I have a table where one column may contain data which includes extended ASCII characters (like ♥,♦,♣....) When I search for the same using select query the result set doesn't fetch exactly for ex: ...
0
votes
2answers
208 views

Ensuring consistency when encoding to UTF8 from extended ASCII

Maybe this is a non-issue but I look to the collected wisdom of SO to help me find out. We're trying to ensure encodings are consistent across platforms. The way to go is clearly UTF8. However, some ...
0
votes
0answers
178 views

Sending UTF-8 Characters using Chrome “Advanced REST Client”

I am testing an application (actual application is a Java application) that sends out XML files to be used as the source information for an email. The application works fine. I need to test some new ...
0
votes
1answer
94 views

Different ASCII symbols/characters considered equal by LinqToSQL

I just discovered some strange behaviour running a query in LinqPad. It seems that some ASCII symbols/characters are considered equal by LinqToSQL when they actually are not. Consider the following ...
1
vote
1answer
232 views

Java to C# - sending/reading byte from jar server to C# client

I am writing a windows application. am having trouble in sending/receiving bytes from jar file. jar file sends me a 2 byte [i.e.. !©] i can read correctly the 1st byte since it comes within ...
0
votes
2answers
814 views

How to convert Extended ASCII to decimal in Windows Forms C#?

I am writing a windows application. am facing problem in converting Extended ASCII[128-256] to its decimal equivalent. when i receive the extended ASCII say for example "Œ" from a jar file, it comes ...
0
votes
0answers
228 views

Valid character subset of extended ASCII for javascript strings

I am doing some experiments with data encoding. I know there is already a base64 format, but I would like something taking less space. Please, note, I am asking for the particular characters, not just ...
0
votes
1answer
336 views

How to read a char that has ASCII value in range 128-130 and convert it to int value

I have an array of chars, some of them are ASCII 128 and 130 in decimal. I am trying to read them as normal chars, but instead of 128 I get 8218 as an int (casted to byte, got 26). I need to get that ...
0
votes
1answer
129 views

string match by tokens - concept check

This question is for a concept check. I have a string 000.00-010.0.0.0 that I'd like to find the closest match to from the list {000.00-012.0.0.0 and 000.00-008.0.0.0} (include with the edit measure a ...
1
vote
1answer
1k views

Powershell converting a character to ASCII

Currently I have a powershell proccess that is scanning a SQL Server Table and is reading a columns containing text. Currently we have characters that are in the extended ASCII land that are causing ...
0
votes
3answers
702 views

python - >how to print a 'block' using ascii #219 in mac

i use python on mac osx, i want use an extended ascii #219 like in this table : http://www.theasciicode.com.ar/extended-ascii-code/graphic-character-ascii-code-178.html The problem, i found out that ...
0
votes
1answer
469 views

Java HtmlCleaner: Does not handle extended ascii characters

I'm using HTMLCleaner to clean an HTML file which has characters like '€' (ascii decimal 128), 'TM' (ascii decimal 153), etc. That is, chars from the ASCII extended table. HTMLCleaner cannot handle ...
1
vote
2answers
4k views

Is it possible to use extened ASCII characters in BAT file?

I have a bunch of dynamically created *.BAT files. These BAT files are used to create folders in a server. Just one line in each BAT file, such as: MKDIR \NetworkShare\abc\123 This "abc\123" string ...
2
votes
1answer
1k views

Extended Ascii characters in Code::Blocks C++

I'm trying to use extended Ascii codes in a console application using C++ and Code::Blocks (character codes greater than 128). http://www.asciitable.com/ The console shows a question mark inside a ...
0
votes
1answer
985 views

In SQL Server bulk insert, how do I use higher ASCII characters for Field and Row terminators

I have a bulk insert that works on SQL Server 2000 that I'm trying to run on SQL Server 2008 R2, but it's not working as I had hoped. I've been successfully running these bulk inserts into SQL 2000 ...
1
vote
1answer
367 views

converting Extended ASCII/ANSI values

I have a program that inputs text and sorts through it using a number of functions and the text should be readable regardless of the format, however, when a file saved to the Extended ASCII encoding ...
0
votes
1answer
293 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 ...
0
votes
0answers
309 views

How to display an extended character set in a c++ console application

It would be helpful to have the ability to display extended characters in my application. I am using Code::Blocks and in my console app, many symbols are not displayed properly. I may have the ...
0
votes
1answer
95 views

What is the correct SQL DataType to represent my Object?

My object is a string, implemented as an array of 1-50 US-ASCII data characters. What SQL Data Type should I use to represent this in my database table? I am using SQL Server Express 2008. (Does ...
1
vote
1answer
330 views

how to pass Extended ASCII characters through JNI via C++

I am trying to use JNI via VC++ and pass a custom directory in the classpath as a UTF-8 string -Djava.class.path=c:\myDir\my.jar This works well and I could find the methods in the jar using ...
5
votes
1answer
766 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 = ...
1
vote
2answers
2k views

How to draw a rectangle in console applicaiton?

aHi, Never used extended ascii ,need to draw a rectangle in a console app with a number inside Do you know of any link or know how to draw rectangles etc.. in c# using extended ascii? This is for a ...
6
votes
3answers
3k views

Extended Ascii in Linux

How would I print these characters in Linux? │ (ascii 179) ├ (ascii 195) └ (ascii 192) ─ (ascii 196) I cannot find any octal values that would work with echo -e "\0xxx", any ideas?
2
votes
3answers
3k 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
1k views

Determine if a text file without BOM is UTF8 or ASCII

Long story short: + I'm using ffmpeg to check the artist name of a MP3 file. + If the artist has asian characters in its name the output is UTF8. + If it just has ASCII characters the output is ASCII. ...
0
votes
2answers
941 views

Ascii code generation for the combination of keys

i want to know how to get the ascii code for the combination of keys. Like i want to handle event for some unique key combination [alt+ctrl+shift]. Alternatively can you please tell me the ascii code ...
1
vote
1answer
1k views

Line Drawing in ncurses

I've been trying to do simple line drawing (e.g. boxes) in ncurses all day, but I can't get it to work. I'm trying to print extended ASCII characters like the ones found here: ...
0
votes
2answers
977 views

ASCII to NSData

This is another crack at my MD5 problem. I know the issue is with the ASCII character © (0xa9, 169). Either it is the way I am inserting the character into the string or its a higher vs lower byte ...
1
vote
2answers
3k views

Console.Write() - display extended ascii chars?

I am able to correctly display the standard ASCII symbols (up to 127) like "heart", "note" you know what I mean. I would like to also display ones that I can use for drawing walls (like U0205) but it ...
0
votes
2answers
790 views

How to Raise Keyboard Events for Special Characters/ Extended ASCII? (Visual Basic 6)

How to a raise a keypress event for Special Character for typing extended ASCII Characters ? Sample code snippet : keybd_event vbKeyE, 0, KEYEVENTF_KEYDOWN, 0 Is there any alternative so that I ...
3
votes
4answers
3k views

How can I display Extended ASCII Codes characters in Perl?

How to display 192 character symbol ( └ ) in perl ?
1
vote
2answers
632 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
2answers
2k views

Convertion from extended ascii to utf8

How do you convert an std::string encoded in extended ascii to utf8 using microsoft visual studio 2005? I'm using google protocol buffer and it's complaining about non utf8 characters in my string if ...
4
votes
1answer
848 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 ...
2
votes
2answers
439 views

Are extended ASCII chars [äöå] allowed in URLs?

I have seen some websites that use äöå-characters in their slugs (they don't convert them to aoo). So what's the case?
0
votes
2answers
425 views

Handling Extended ASCII in File Uploads

A website I recently completed with a friend has a gallery where one can upload images and text files. The only accepted text file (to ease development) is .txt and normally goes off without a hitch ...
0
votes
1answer
862 views

solid delta and inverted delta symbol in html

I need to display the following two symbols in an email solid upward delta : something like ▲ solid downward delta : ▼ But i cannot use extended-ascii set, because it causes problems in the unix ...
0
votes
3answers
2k views

How to split line at non-printing ascii character in Python

How can I split a line in Python at a non-printing ascii character (such as the long minus sign hex 0x97 , Octal 227)? I won't need the character itself. The information after it will be saved as a ...

1 2