Unicode Transformation Format
0
votes
1answer
13 views
How do I do a Py3k pickle dump?
I'm getting the following error via cgitb:
TypeError: must be str, not bytes
args = ('must be str, not bytes',)
with_traceback = <built-in method with_traceback of TypeError ...
0
votes
1answer
28 views
Indy IMAPClient UIDRetrieveAllEnvelopes not getting other character set properly
Using: Delphi XE2, Windows 8 with US-English as default language
I am writing an email client with Delphi. I'm using TIdIMAP4 to connect to a GMail mailbox via IMAP and getting the message list like ...
0
votes
1answer
24 views
Need help getting my basic socket-server working
So, I managed to get a basic single-connection server running, now I'm trying to convert it to a multi-threaded server for a small multilayer project I wanted to do, I'm completely self-taught and I ...
1
vote
0answers
28 views
PHP cURL function on Wikipedia.org sends arbitrarily encoded stream of characters
I have a simple site to access Wikipedia through a cURL function, http://wiki-iit.site11.com/.
However, the output returned in some cases is in a poorly encoded form. For example, say when the input ...
0
votes
1answer
14 views
Tomcat 7 URI decoding works differently in Linux and Windows
I have tomcat7 in Windows 7 and Debian. Both of them have URIEncoding="UTF-8" inside connector. I open url like
http://myhost.com/d/P2ILfNOPL-%2BAp3YljV-axQ
and Windows tomcat gives me %2B and ...
0
votes
1answer
37 views
PHP UTF8 preg_match output different on live server
When using preg_match('/^[\w-]+$/u', $value) my development server (5.3.15) returns true for umlaut words. My live server (5.3.2-1ubuntu4.19) returns false.
What do I have to do to make the live ...
0
votes
0answers
12 views
Size of UTF string
If I have a string in UTF-16 with values "hello", and If I write it to a file, what will be the size of the file? will it be 5 bytes or 10 bytes or 13 bytes(with BOM) ?
2
votes
1answer
41 views
Override utf8_enforcer_tag using Rails custom form builder?
I want to stop form_for with method: get from passing the utf8=✓ URL parameter.
If I wanted to do it globally, this would work:
# config/initializers/utf8_enforcer_tag.rb
module ActionView
module ...
0
votes
3answers
91 views
c# character encoding that treats accented characters like simple ones
Is there an encoding where an accented character like á or ä is treated as a single character?
and if not then what would be the most commonly used encoding today? I'm using UTF7 currently, how ...
1
vote
2answers
69 views
How to test a u32string for letters only (with locale)
I'm writing a compiler (for my own programming language) and I want to allow users to use any of the characters in the Unicode letter categories to define identifiers (modern languages, like Go allow ...
2
votes
1answer
149 views
What most correct way to set the encoding in C++?
How it is best of all to set the encoding in C++?
I got used to working with Unicode (and wchar_t, wstring, wcin, wcout and L" ... "). I also save source in UTF-8.
At the moment I use MinGW (Windows ...
0
votes
3answers
129 views
Java Client/Server reading and writing doesn't work and no error
Client.java
package Client;
import java.io.*;
import java.net.*;
class Client {
/*
To send string to server use "out.print(data)"
To use info sent from server use "in.readLine()"
...
2
votes
1answer
161 views
how to make JSON.stringify encode UTF characters
I'm writing a JS that run using windows cscript.exe.
My JS is loading JSON object from file, adds a parameter and saves it back to file (using json2.min.js implementation).
I'm using JSON.parse(text) ...
3
votes
2answers
78 views
Which Languages Does UTF-8 Not Support?
I'm working on internationalizing one of my programs for work. I'm trying to use foresight to avoid possible issues or redoing the process down the road.
I see references for UTF-8, UTF-16 and ...
0
votes
0answers
50 views
JAVA XML parse ..utf-8 issues
i'm using XOM parser which was working fine until i had to support UTF-8..
the xml outputs correctly in UTF-8 from the Serializer write below:
Document doc = builder.build(xml_in);
Serializer ...
0
votes
0answers
17 views
XmlWriter does not take XmlWriterSettings.Encoding [duplicate]
On my x64 OS the XmlWriter builds utf-16 encoding files by default. Now, I try to change the encoding by using XmlWriter writer = XmlWriter.Create(sw, new XmlWriterSettings()
{
...
1
vote
2answers
62 views
Problems with accents in using c++ and qt
Hi: I'm writing a program in spanish. I want to tell the user that a file has been loaded. In spanish that is:
ui->teLog->append("Se cargó el archivo: " + filename);
However the spanish parts gets ...
1
vote
0answers
86 views
Why is sys.getdefaultencoding() different from sys.stdout.encoding and how does this break Unicode strings?
I spent a few angry hours looking for the problem with Unicode strings that was broken down to something that Python (2.7) hides from me and I still don't understand. First, I tried to use u".." ...
0
votes
2answers
87 views
Extracting lowercased russian words from UTF8 text
Using ActiveState Perl 5.14.2 on Windows 7 or Perl 5.10.1 on CentOS 6.3 Linux I am trying to extract all lowercased words from an UTF8 text:
#!/usr/bin/perl -w
use strict;
use warnings;
...
0
votes
0answers
42 views
Encoding Issues for autosuggest, PHP , Mysql
I'm really new to PHP and Mysql.
My problem is that I have this part of the code for contacting the database and returning information for an auto-suggest script.
if(isset($_POST['queryString'])) {
...
0
votes
0answers
10 views
Save Visual Web solution as Unicode UTF-8
I have a Visual Web solution containing around 1000+ html files that were all saved with Western European (Windows) - Codepage 1252. In order to display special characters, I need to change this to ...
3
votes
3answers
64 views
UTF-8 issue in linux
String departmentName = request.getParameter("dept_name");
departmentName = new String(departmentName.getBytes(Charset.forName("UTF8")),"UTF8");
System.out.println(departmentName);//O/p: composés
...
0
votes
1answer
96 views
R getting rid of single quote character
I have a vector of character strings I'm trying to process, but I can't get rid of some weird characters.
When I read the csv file I used the following line:
train <- ...
1
vote
0answers
106 views
Character coding Javascript ANSI to UTF 8
I have to parse a file in Javascript. According to notepad++ its ANSI. Here is the code:
var file = "assets/file.txt";
function getFile(file){
var lines;
$.ajax({
...
1
vote
1answer
81 views
PHP - Bytes to UTF8 character?
I need to process some emails and these contain character phrases such as:
=E2=82=AC
which apparently are the bytes for a euro sign.
I also get things such as:
VALIGN=3D"top"
which I'm not ...
0
votes
2answers
430 views
Strange unicode characters when reading in file in node.js app
I am attempting to write a node app that reads in a set of files, splits them into lines, and puts the lines into an array. Pretty simple. It works on quite a few files except some SQL files that I am ...
3
votes
2answers
115 views
Change Encoding in C#?
Theoretical question :
Let's say there is one source which knows only how to transmit ASCII chars. (0..127)
And let's say there is an endpoint which receives these chars .
Can the endpoint decode ...
0
votes
0answers
18 views
FCKConfig.ProcessNumericEntities setting is not working as expected.. is there any other setting to do?
From the link Manual
ProcessNumericEntities
This option tells the editor to transform all characters that are out of the ASCII table to their relative Unicode numeric entities.
For ...
2
votes
1answer
81 views
utf8 representation as normal text
$text = "\xd0\xa2\xd0\xb0\xd0\xb9\xd0\xbd\xd0\xb0";
$text = iconv('UTF-8', 'UTF-8//IGNORE', $text);
var_dump($text); //Тайна - good
$text = file_get_contents('log.txt');
$text = iconv('UTF-8', ...
0
votes
1answer
59 views
QString encoding with special character
I m trying to convert QString with special character to const char but I did not succeed.
my function is:
void class::func(const QString& fileName) // fileName = "â.tmp"
{
qDebug()<< ...
-1
votes
1answer
231 views
java.io.utfdataformatexception: String is too long
I am getting the exception as in the Title while sending an image to a java server
Here's the code:
ByteArrayOutputStream stream = new ByteArrayOutputStream();
...
0
votes
2answers
105 views
displaying WINDOWS-1252 encoded text from file as html
i have a text file with WINDOWS-1252 characters like ø and ß. the file is being uploaded via form submit to a servlet, where it's being parsed with opencsv and returned as a List object to a jsp page ...
2
votes
2answers
288 views
Oracle: Length of CLOB in bytes using AL32UTF character set
I'm currently wondering if there is a way to find out the number of bytes used by a particular field value (which may or may not be longer than 4000 characters) in a SQL query.
dbms_lob.getLength() ...
2
votes
2answers
339 views
Spanish Characters in C#
I am currently working on a Spanish translation program that uses HtmlDocument to access the Google translate website. I am programming in Assembly C# in Unity. Shown below is my current code for ...
0
votes
0answers
96 views
how to use non-utf character encoding with Java+JDBC/Hibernate?
Subj.
I have an Oracle database with non-utf encodings, and I should manually dump this db to HDD, with original encoding for every table, using JDBC or Hibernate.
All examples I read use UTF, and ...
0
votes
2answers
165 views
codeigniter, converting to utf 16 charset, form validation wrong length
hey guys was hoping you could help me out.
I am required to make a website coded in php+codeigniter to work with utf 16 charset.
So to convert it,
I have converted the database.php settings to:
...
1
vote
3answers
94 views
Converting from String to byte[] to String
I have run into such a java String where the following is false:
body.equals(new String(body.getBytes()));
I suppose this is because the String constructor is by default treating the encoding of ...
0
votes
1answer
117 views
Java more than one kind of utf-8
I have a sort of strange problem with encoding. I'm writing a java program that reads and writes to file. Both reading and writing is set to uft-8, and it appears to work well.
When I open the file ...
1
vote
3answers
113 views
Encoding issue in I/O with Jena
I'm generating some RDF files with Jena. The whole application works with utf-8 text. The source code as well is stored in utf-8.
When I print a string contaning non-English characters on the ...
0
votes
0answers
346 views
FileInputStream (No such file or directory)
I'm trying to invoke new FileInputStream(file). But file.name contain non Latin characters. (Chinese actually) But FileName itself, not a content only.
When I trying to run application on Windows ...
0
votes
0answers
66 views
CJK corruption, sqlite3
These two methods are used for encrypting / decrypting DB content:
public String encrypt(String str) {
try {
// Encode the string into bytes using utf-8
byte[] utf8 = ...
0
votes
1answer
166 views
To write degree symbol in .csv file
I am trying to write °C and °F symbol into my csv file from android code, but it is displaying some junk in the csv file.Thank you in advance. Please help me in writing degree symbol into csv file
...
0
votes
2answers
276 views
Printing unicode characters to stdout in python prints wrong glyphs
I want to print a set of Unicode characters to my command prompt terminal. Even when I enforce the encoding to be "UTF-8" the terminal prints some garbage.
$python -c "import sys; print ...
0
votes
2answers
122 views
Python: write unicode value in file
I'm writing a script that writes files in multiple languages including none ascii text therefore I'm writing the content in unicode.
Here is a print of the data:
[['LATEST', ...
0
votes
2answers
84 views
Android Httppost and php, messy encoding
I have the following problem. I'm trying to send data using httppost in Android (my code looks like this http://www.androidsnippets.com/executing-a-http-post-request-with-httpclient). The server using ...
0
votes
1answer
78 views
Dealing with Cyrillic alphabet used in place of Latin characters
We've recently had a user enter english text, but it appears to have been done on a computer set up for Cyrillic as some of the letters such as "a" are actually CYRILLIC SMALL LETTER A, as opposed to ...
0
votes
1answer
199 views
how to convert MS word Unicode 2-byte Cyrillic to CP866 1-byte Cyrillic
I am having an issue with a piece of hardware that only contains the CP866 library/code page for Cyrillic. The text that I want to display is currently in MS Word and I need to convert it to the CP866 ...
0
votes
1answer
794 views
string comparing query with chinese chars - Oracle Database
I'm having trouble executing a simple query such as the following
select * from table_name where variabe_name like '在职'
the problem is the chinese chars. Those chars are in the table (I just copied ...
2
votes
1answer
584 views
MySQL Java international character(UTF-8) encoding
I am trying to insert some data into mysql DB via Java JDBC that contains some International characters.
INSERT INTO my_table (`name`, `lat`, `long`, `label`) VALUES('Ädelfors folkhögskola', ...
0
votes
0answers
261 views
What is the default Character encoding in vb.net?
Dim sourcecodestring As String = ""
Dim charset = ""
Dim request As System.Net.HttpWebRequest = System.Net.HttpWebRequest.Create("http://" & website)
Dim response As ...


