Tagged Questions
0
votes
1answer
23 views
RandomAccessFile - Chinese characters when reading
Field on file.dat are organized this way:
NAME SURNAME NAME SURNAME ...
I use this piace of code to write to the file:
RandomAccessFile file = new RandomAccessFile(dir, "rw");
...
0
votes
0answers
25 views
Detecting Unrecognized (codepage-unicode) Characters in a string
How do you detect an unrecognized code page character in a string in vb.Net? These charaters usually show up in a default character such as "?" or a square when the current code page can not recognize ...
2
votes
2answers
40 views
Is it necessary to use — and – in XHTML or HTML5?
It seems that it is best to use the & escape, instead of simply typing the ampersand (&).
However, should we be using X/HTML character entity references for dashes and other common ...
0
votes
2answers
93 views
What is this ASCII character code ? [closed]
I want ASCII character code of character code which i red circle.
I want display this symbol in word using C#.
Thanks !
0
votes
2answers
68 views
Byte Buffer To String
Reading a Byte buffer:
while (...)
{
builder.Append(Encoding.ASCII.GetString(buffer, index, 1));
++index;
}
I'm getting the following result: "20202020202020202020202057363253304b4358", ...
0
votes
0answers
39 views
Jsfiddle - strange characters on UI
what's the solution for this kind of problem (weird characters) that suddenly appeared for me on jsfiddle.net? This started a few weeks ago. Any similar experiences?
Update 1
It works perfectly ...
2
votes
3answers
88 views
How to remove unnecessary characters from string?
There is a problem in character when I fetch data from database.
doesn�t
It�s
I have tried to remove it using str_replace function but it's not working.
str_replace('�','',$str);
The encoding ...
0
votes
0answers
40 views
Tracking Down Strange Unrecognized Character Issues (Question Mark in a Diamond)
We are noticing something odd on our site. We are seeing some unrecognized characters (shown as a question mark inside of a diamond) popping up in data produced from MySQL.
For our website, we use ...
0
votes
0answers
46 views
Ubuntu Custom Character Set or Code Page
I currently have a character based application that uses CP437 encoding for displaying all the lines and the logo and everything. Recently I had to store and view multi lingual data and ran into a ...
1
vote
2answers
51 views
How to programically enter a new line?
My app has a send email function, in this email I want it to say something like:
Hello,
This is an email.
My question is how do I programically enter a new line in between Hello, and This is an ...
3
votes
3answers
91 views
C characters over 128
I have a question regarding the saving of characters in C char arrays.
I must read text from a file into a array of type "char" (i cannot use unsigned char). When there are certain characters with a ...
2
votes
3answers
402 views
Prolog - List of CharCodes to a String or Characters
I have a list of Character Codes in prolog.
I would like to change them into characters.
For instance,
L = "abc"
returns L = [97,98,99]
Assuming I start with L = [97,98,99]
Is there anyway to ...
5
votes
3answers
160 views
Why Isn't dchar the Standard Character Type in D?
Just browsing the digitalmars.D.learn forum, and D-related question on StackOverflow, it seems to me that a major point of mistakes for a beginner D programmer (me included) is the difference in usage ...
-1
votes
1answer
89 views
lexical error encountered: “<” (60) after “”
When is this lexical error thrown?
I have a program where I write test cases in a file. My java program parses the file, test cases are read and executed. In the parsing stage I encounter this error. ...
1
vote
1answer
79 views
Characters not showing well on server
All the special characters get broken, why? on my local all looks good on all browsers...
0
votes
2answers
135 views
PHP/Mysql Character Sets
I have a PHP/MySQL application, where it needs to work with UTF-8 characters behind-the-scenes (the UTF-8 characters won't be shown on-screen). The UTF-8 characters are from a PHP cURL request.What do ...
0
votes
0answers
111 views
Replace weird char that lookes like –
I found a character I need to convert to a minus sign (-).
I found this Can't remove special characters with str_replace.
so I tried the function decodeString on my char wich gave me this:
...
2
votes
3answers
140 views
Char value representation in JVM
How is the char value represented in JVM? Let's say
char ch = 'c';
How is the value of ch represented as a 16-bit unsigned integer in JVM?
3
votes
1answer
3k views
Weird fix from PageSpeed Tools
When I test my webpage in PageSpeed Tools (a tool to optimize webpages by Google), I get these problems:
Problem #1:
Avoid a character set in the meta tag
The following resources have a ...
1
vote
2answers
665 views
Read special characters in java
I have a question, I'm trying to read from a file, a set of key and value pairs ( Like a Dictionary). For this I'm using the following code:
InputStream is = ...
0
votes
3answers
703 views
special characters turn into question marks php html
Hi guys I have a problem, and read all the topics found on stackoverflow and other forums, it's hosted on hostgator and I've never had problems with their servers before although quotes for example ...
0
votes
1answer
570 views
Allow special character in CodeIgniter
I have problem: if I use preg_replace with plain PHP, it works. However in CodeIgniter, it doesn't work. I've searched and did some changes such as: make general UTF-8, set ...
0
votes
1answer
367 views
Accented characters and MySQL searching
I've searched for a question for hours and I haven't found an answer that was suitable for me, so... Here I come...
I'm Hungarian and we use the following accented characters in our language: ...
7
votes
2answers
1k views
What is the maximum number of bytes for a UTF-8 encoded character?
What is the maximum number of bytes for a single UTF-8 encoded character?
I'll be encrypting the bytes of a String encoded in UTF-8 and therefore need to be able to work out the maximum number of ...
0
votes
1answer
64 views
Getting un-wanted square bracket after a character in french language
i have fallowing sentence in french language, when i am displaying it on browser i am getting square bracket in place of this ` character.
sentence- Méthode d’expédition
the char after d is ...
0
votes
1answer
1k views
Converting ANSI to UTF-8 inserts characters before the doctype
Good day,
I'm trying to convert my site from ANSI-encoded PHP files to UTF-8. I converted my header.php and footer.php files to UTF-8 but when I convert my index.php, the page renders incorrectly.
...
1
vote
0answers
946 views
Tomcat 6 and foreign characters (UTF-8 and non UTF-8 mixup)
I have a problem displaying foreign language characters in web app with Tomcat 6. Previously we were using Tomcat 5.5 and we did not face this issue. To fix this issue I followed ...
0
votes
1answer
795 views
Echo German characters from MySQL database?
I have a database full of German contacts.
The database itself displays all the unique German characters fine (when i'm looking at it in the admin control panel), but when I echo any special German ...
2
votes
3answers
3k views
Read any text file in Android and convert contents to UTF-8?
Is it possible to read a text file in Android and convert its content to UTF-8, so all the usual special characters are shown correctly? I am especially talking about some European characters, like Æ, ...
0
votes
4answers
2k views
french letters in android views show question marks
I read data from an utf8 database then display it in a listview.
but there are words in the database containing è é à á letters when I get the xml manually in the browser it shows up perfect
but in ...
0
votes
1answer
411 views
Turkish Character Problem in IE
I just want to get "city" value to a string variable.
But
http://localhost:4928/Default.aspx?method=abc&city=ĞÜŞİÇÖöçşğü
When I type above link to chrome, there is no any problem.
But when I ...
1
vote
1answer
46 views
Standardizing “character set ranges” as internationally defined values
Lets say I have a field which accepts A-Z,a-z,0-9 . If I'm trying to communicate to someone, via documenation or api creation "what" my code can accept, i HAVE to say:
A-Z,a-z,0-9
Now that in my ...
0
votes
4answers
669 views
save Ø in mysql table and not Ø
My table look like this:
CREATE TABLE `friends`
(
`id` bigint(20) NOT NULL default '0',
`fb_id` bigint(20) NOT NULL default '0',
`name` varchar(100) NOT NULL default '',
) TYPE=MyISAM ...
0
votes
0answers
216 views
Extra Characters at the beginning of rendered view in cakePHP
I have a cakephp project that I am working on and when I look at the source code after it is rendered in the browser, it is throwing two question marks at the beginning of the code.
??<!DOCTYPE ...
6
votes
4answers
3k views
How to split strings into characters in Scala
For example, there is a string val S = "Test". How do you separate it into t, e, s, t ?
9
votes
3answers
26k views
Converting Character Code To Char (VB.NET)
I'm able to convert a character to its corresponding Character/ASCII code using "Asc(CHAR)". I can't find anything on converting this returned Integer back to its original Char form. Any help on ...
0
votes
2answers
508 views
How to change an entire website's files' character encoding to UTF-8?
How can I change all of my php/css/js files to utf character encoding? I can't get it to validate otherwise.
0
votes
1answer
204 views
Bad characters from CSV into database
I am trying to figure out why I keep getting bad characters when I import information into my database from a CSV file.
Setup:
Database is UTF-8 encoding
HTML Page = UTF-8 Encoding (Meta Tag)
What ...
2
votes
1answer
77 views
Is there a Four-Per-Em Space character - but as NO-BREAK Space?
I had a look around the web but did not find something suitable, so here is my question:
Is there a Four-Per-Em Space character - but as NO-BREAK Space?
1
vote
3answers
152 views
Weird Characters on Webpage
I'm getting product descriptions from Amazon web service and storing them in MySQL. I've noticed that, for some characters, what is stored in the database is not the same as what is displayed on my ...
1
vote
2answers
611 views
Problem with cyrillic characters in Ruby on Rails
In my rails app I work a lot with cyrillic characters. Thats no problem, I store them in the db, I can display it in html.
But I have a problem exporting them in a plain txt file. A string like ...
34
votes
4answers
13k views
What is a vertical tab?
What was the original historical use of the vertical tab character (\v in the C language, ASCII 11)?
Did it ever have a key on a keyboard? How did someone generate it?
Is there any language or ...
0
votes
3answers
295 views
When parsing XML, the character é is missing
I have an XML as input to a Java function that parses it and produces an output. Somewhere in the XML there is the word "stratégie". The output is "stratgie". How should I parse the XML as to get the ...
0
votes
1answer
59 views
results show well in the class file, but show strange characters when I include it in the main system?
I am currently building a blog system, and the class file i.e class Blog{}, is running ok, when I try it on its own, but, when I try to use it in the pages of the site that have css, it looks weird ...
7
votes
4answers
4k views
Efficient way to calculate byte length of a character, depending on the encoding
What's the most efficient way to calculate the byte length of a character, taking the character encoding into account? The encoding would be only known during runtime. In UTF-8 for example the ...
0
votes
1answer
763 views
.aspx character coding
I am having an problem. First time working with a windows server, do you know if there is any problem in character coding? My document is set to content="text/html; charset=UTF-8" but it's giving me ...
6
votes
1answer
5k views
Convert CharCode to Char?
What I need
ok I googled this and there are many tutorials on how to get the charCode from the character but I cant seem to find out how to get the character from the charcode.
Basically I am I am ...
5
votes
7answers
917 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 ...
1
vote
2answers
587 views
Is there an alphabetical character check in prolog?
Greetings,
Is there was test or a predicate I can use in prolog to verify that a certain given character is alphabetical? Right now, what I'm doing is:
List of unallawed characters: \n -> 10, space ...
0
votes
3answers
379 views
translating letters vs special characters
I've got a bunch of data which could be mixed characters, special characters, and 'accent' characters, etc.
I've been using php inconv with translit, but noticed today that a bullet point gets ...
