Representing characters as a series of bytes
1
vote
1answer
30 views
How to read a .sav SPSS file in in R?
I've tried read.spps(), but I get an encoding error:
> library(foreign)
> read.spss('persona.sav')
re-encoding from CP1252
Error in iconv(names(rval), cp, "") :
unsupported conversion from ...
0
votes
3answers
39 views
C String encoding UTF8 without libiconv
I know this question has been answered to most of the languages but i have not found a solution for C or i am misunderstanding something.
I have declared a "char *strSSID". I have a function in a web ...
0
votes
2answers
26 views
file_get_contents() returning invalid characters for uploaded word document
I'm trying to get the first 1,000 characters from an uploaded text file. I'm doing:
if($file->simpletype=="document"){
//get first 1000 chars in here
$snippet = ...
0
votes
1answer
29 views
Find non-ASCII characters in a text file and convert them to their Unicode equivalent
I am importing .txt file from a remote server and saving it to a database. I use a .Net script for this purpose. I sometimes notice a garbled word/characters (Ullerهkersvنgen) inside the files, which ...
0
votes
1answer
24 views
Use codecs to read file with correct encoding: TypeError
I need to read from a file, linewise. Also also need to make sure the encoding is correctly handled.
I wrote the following code:
#!/bin/bash
import codecs
filename = "something.x10"
f = ...
0
votes
1answer
23 views
Handling CSV data encoding to be inserted into UTF-8 Database
We have some CSV files that our users will be using and hence the encoding may not be UTF-8 and will probably be cp1252 encoding from Windows. I have noticed that if it contains a single quote for ...
0
votes
0answers
6 views
greek encoding issue on 2008 R2 windows service
I have a C# service running on Windows Server 2008 R2.
The service calls a DLL that reads text files with greek characters (Greek 869), using File.ReadAllLines().
However, some characters are not read ...
0
votes
0answers
10 views
Java and ITA2 charset
Anyone who has experience with encoding messages using the ITA2 charset?
I am wondering if there exists some Java library supporting this, or if I would have to implement everything from scratch?
...
2
votes
1answer
27 views
Converting Legacy Mac OS Japanese Encoding to Unicode in Windows
Several years ago, Apple released a document that outlines the mappings between Apple's "Mac OS Japanese" Character Set and Unicode code points. ...
0
votes
3answers
20 views
 character not displaying on website
Hi guys I have the code:
<span class="state_tiny-close-x"><!-- icon_cross --></span>
But I can't see the cross, how do I get this working? Do I need to include a ...
0
votes
1answer
24 views
Force “charset=x-user-defined'” on jQuery Ajax Post
I am trying to call a Hessian web service from a Javascript application, but I'm having issues parsing the response, since jQuery is treating the response as text and stripping the first bytes of it.
...
0
votes
1answer
11 views
UCS2 and unicode C and mysql
I'm writing an application where I receive a char from network, for example char "ص" and I have the same char saved in DB from a PHP page, I can see that the char in DB is saved like this 0xd8b5 but ...
1
vote
1answer
19 views
What could break charsets between database and display?
I am using a MySQL database to store some strings which contain German umlauts (äüö). The table "testtable" and the column "text" are utf8_bin collated, and PHPMyAdmin tells me the "MySQL connection" ...
0
votes
2answers
26 views
COLLATION 'utf8_general_ci' is not valid for CHARACTER SET 'binary'?
mysql> SELECT LOCATE("n", "München") COLLATE utf8_general_ci;
ERROR 1253 (42000): COLLATION 'utf8_general_ci' is not valid for CHARACTER SET 'binary'
How do I get rid of this error?
What I ...
0
votes
0answers
43 views
Encoding german characters
I need to import with load data some perl - generated files to oracle database.
Perl-script get a webpage and write csv file.
Here a simplified script:
use File::Slurp;
my $c= ( $user ...
0
votes
0answers
15 views
Insolvable encoding issue with rails… Turkish “keşkek”, the s is turning into a question mark…
I have a basic form with a text area, the page has:
'<meta http-equiv="content-type" content="text/html; charset=utf-8" />'
in the header.
It's saving to a mysql database with utf-8 ...
0
votes
0answers
11 views
Download and store Usenet messages for yEnc decoding (yDec)
I'm trying to download (and reconstruct) binary files from Usenet (NNTP) with node.js, using mscdex's node-nntp. I'm parsing nzb-files (XML) to find the correct messages and I'm able to download those ...
3
votes
1answer
26 views
At what level is the order of the alphabet(s) stored in software/operating systems?
Ordering something alphabetically isn't something we spend too much time worrying about. We learned the alphabet at a young age and now we know that it (Latin) starts with A, then B, then C etc. ...
3
votes
2answers
39 views
Convert charset from a entire project to utf-8
Hi i have a project made in windows who uses windows 1252 charset and i need to convert all my .php file to utf-8 charset because my database is all utf-8 encoded.
Is there a way to do that using ...
0
votes
1answer
11 views
Reason Phrase charset
What is the charset used for http Reason Phrase ?
if I use special char "è" (utf8 encoded) chrome works well, but firefox show "é".
I don't find anythink about that on reference ...
0
votes
0answers
9 views
Dictionary (substitution) coding method
I need to encode AABDDCBDDCADDD sequence. According to the explanation I have - I'm creating 4-columns table: dictionary, buffer, input, output.
I'm not sure what kind of coding is this, or if you ...
0
votes
0answers
15 views
ASP.NET upload file to server with special characteris like ö ä ü
i got an upload script which is uploading a file to an american server from an europe client.
Some users got files with special characters like ö,ä,ü in the filename.
If i am uploading such a file ...
2
votes
0answers
30 views
Convert Text on database mysql and output them in pdf file
column address in database type text
I write code:
$string = mb_convert_encoding($addr,'sjis-win','utf-8');
and ouptut $string in pdf file export. My machine text ok, but japan machine character ...
1
vote
1answer
35 views
How to store and get exact characters in mysql db?
Content with special characters e.g. ' " - when stored are replace into characters like these �. But not all instances of the characters are changed to characters like these �. So it is a little odd ...
1
vote
0answers
17 views
downloaded non-english html file not readable in webview
save (malayalam) string content code
String A = "<html><head><style>"
+ "@font-face { font-family: Manorama;src: url(file:///android_asset/Manorama.ttf); }"
...
0
votes
1answer
22 views
Codeiginter mysql storing chinese characters as questions marks
When I type in chinese characters to store in the database, it becomes ??? question marks instead.
Anyone can help me with this?
My codeigniter config settings for char set is
...
0
votes
0answers
16 views
DateTime objects from MongoDB have unreadable characters in Object Definition
Whenever I fetch data from a MongoDB collection, and one of the fields has a DateTime object, I get this:
object(DateTime�����w )[359]
public 'date' => string '2012-12-12 00:00:00' (length=19)
...
2
votes
1answer
45 views
EBCDIC code page does not convert lower case 'a'
I'm attempting to convert a string of characters from ASCII to EBCDIC using an IBM codepage. The conversion is correct except for lower case 'a' which is converted to an unprintable character.
Here ...
0
votes
0answers
20 views
myql-front replacing symbols to question marks
when manually inserting into myql-front some string after refrash it replace to question marks
the problem is that when im selecting that column it comes same question marks symbols to html
i have ...
0
votes
1answer
27 views
encodeURIComponent and encodeURI
I am trying to encode the French characters inside the URL.
The url is constructed in javascript, and then I use window.open to open the url.
For example,
var alt_title='Thierry Frémaux: Les ...
0
votes
1answer
31 views
Java, convert string to a RSA publicKey
i am trying ton convert a string representation of a public key into a publicKey java object use to encrypt data but i keep getting the following error below:
...
1
vote
3answers
30 views
Which is the difference about writing “<” and “<” in the database?
I have a database that's encoded in latin1_swedish_ci. I'd like to know what's the difference between inserting < and < in the database?
0
votes
1answer
24 views
Jenkins and TestNG results encoding
I am use Jenkins to build my Maven project and post testng results using plugin. Have a problem with cyrillic symbols in report. It's look like: ��������. But
cyrillic output in Jenkins console is OK.
...
1
vote
0answers
30 views
php e-mail to-field with strange characters
I'm having trouble getting my code in PHP to send out emails to persons with special characters in their names, like é à ö.
Here's the snippet of the coding:
$firstname = ...
2
votes
1answer
33 views
Zend 1.11 automatically applies htmleneities filter on submit button
we render a German encoded string übermitteln from a file.
Problem:
zend form does not consider ü as a character and displays the same value on my submit button.
Quick fix we got:
...
1
vote
0answers
22 views
NUL characters after JAXB marshalling
I've been using the JAXB libraries to read & write XML files for a while now, without any issues. However, I've recently had issues where NUL characters are written to the XML files during ...
0
votes
1answer
20 views
unable to retrieve Unicode data correctly from GUI
I am sending out unicode messages from pc to phone using jsms api. When I use this part of the code, it works perfectly. I get the message displaying "ఈ ఒక తెలుగు సందేశం" perfectly.
SmsMessage ...
1
vote
2answers
69 views
Squeak Monticello character-encoding
For a work project I am using headless Squeak on a (displayless, remote) Linuxserver and also using Squeak on a Windows developer-machine.
Code on the developer machine is managed using Monticello. ...
0
votes
1answer
11 views
Can't find the correct collation/charset for my form
I've setup a simple bootstrap page to insert rows in my db, but I can't get the db to save in the right format/charset.
I want it to support multiple languages since I'm saving beer names from ...
1
vote
2answers
44 views
Print Arabic or other charset in System.out
I'm tyring to print a String with Arabic characters:
private static void print(String msg, Object... args) {
try {
PrintStream ps = new PrintStream(System.out, true, "ISO-8859-6");
...
-2
votes
2answers
37 views
Which charset is '&lt;'? [closed]
I found this character in my phpbb database: &lt;. Which charset is?
I'm on MySQL, and I have PhpBB and phpmyadmin. The code shows <.
0
votes
0answers
22 views
MYSQL - From utf8_bin to latin1_swedish_ci
I've imported phpbb records to vbulletin using impex. But now I've a problem with charset. PHPBB was in utf8, vbulletin is in latin1. How can i convert EVERY characters? I've seen this code: Detecting ...
0
votes
1answer
31 views
ë versus ë versus ë
I need two PHP variables to match ($path1 and $path2). I can only change one of them ($path1).
The variables both contain the letter ë, but one of them is written as ë and the other one as ë.
...
0
votes
1answer
15 views
sqlite3: query file's UTF-8 encoding is not recognized automatically
I fed in the query for the database as follows:
sqlite3 database.db < query
and I got the message:
Error: near line 1: near "SELECT": syntax error
The query was encoded in UTF-8 and so was ...
1
vote
1answer
25 views
utf-32 advantage explanation
in the online diveintopython3 book,it says that the advantage of utf-32 and utf-16 is that
UTF-32 is a straightforward encoding; it takes each Unicode character
(a 4-byte number) and represents ...
0
votes
0answers
7 views
How to detect wrong encoding declaration?
I am building a ASP.NET webservice loading other webpages and then hand it clients.
I have been doing quite well with character code treatment, reading the meta tag from HTML then use that codeset to ...
1
vote
1answer
41 views
Way to determine if a charset is multibyte?
Is there a way to determine whether a given Charset (java.nio.charset.Charset) encodes characters using multiple bytes? Or, alternatively, is there a list somewhere of character sets that do/do not ...
0
votes
2answers
26 views
TEXT in Arabic showing wrong characters instead
I've a Character Encoding issue.
I've a text file written in arabic, when i open it I get weird characters.. like this åÇÜÇáÍÌÑäÇáÑÝÇÚíãäí..
Is there any way to fix this and get a correct text? ...
0
votes
0answers
29 views
Zend Framework 2 accents using formRow view helper
I have a class which contains all traduced strings of my page.
All strings have its accents with its respective &xacute; code.
When I render my page, the labels rendered with formLabel view helper ...
1
vote
3answers
65 views
How to convert windows-1256 to utf-8 in lua?
I need to convert Arabic text from windows-1256 to utf-8 how can I do that? any help?
thanks
