Unicode Transformation Format
0
votes
0answers
16 views
How change UTF-8 code point case during commit Git?
I want to commit UTF file with following text:
Session expir\u00e9!
But the previous version was:
Session expir\u00E9!
Simple case difference occurs a lot of times because my text editor and IDE ...
0
votes
2answers
43 views
C++ error too big for character
Here is were i get the error.
To explain, i want to print the → character which according to http://www.endmemo.com/unicode/unicodeconverter.php
The code is 2192. but i may be using the wrong code ...
0
votes
1answer
12 views
Repair weird characters in Database
I had a problem with UTF-8. So now many records are broken and have weird characters in them like..
donc de façon créative
Any way i can repair all of this? Thanks!
1
vote
4answers
76 views
How to check if a char is valid in C++
I need a program that reads the contents of a file and write them into another file but only the characters that are valid utf-8 characters. The problem is that the file may come in any encoding and ...
0
votes
1answer
63 views
AJAX: post method with UTF-8
I'm trying to send data as UTF-8 over Ajax, but it's changing some data in unicode. I'll explain it with two short examples:
A simple POST (without ajax)
<form accept-charset="UTF-8" ...
0
votes
1answer
24 views
converting turkish characters
i am getting data from website and i am saving to xml file. i want to replace all turkish characters because if not, i am getting weird characters when i access the data from xml.
i used this code
...
0
votes
0answers
38 views
Encode URL-parameter to UTF-8 for Windows Phone 8
sorry bothering you, I'm relatively new to .NET/Windows Phone 8.
I want to encode URL-parameters in my to to UTF-8, and I started with
UTF8Encoding utf8 = new UTF8Encoding();
byte[] tmp = ...
0
votes
2answers
65 views
Why characters shows up like � after dealing with them?
I'm making kind of encryption algorithm but I have a terrible problem when dealing with some special chars like "à","é".
Whenever I make a copy in memory or something like that this problem comes ...
0
votes
1answer
12 views
Issue with encoding
My html is in utf-8, as is my sql and my tables. But my variables are not saving latin characters. Is as if the post variables are changing the characters before sending it to my database.
0
votes
2answers
30 views
PugiXML value output encoding
I am a little confused. pugi::xml_node::value() returns string of type chart_t, which can be either wchar_t or char depends on compilation flags. In documentation to pugiXML said that it works with ...
0
votes
2answers
72 views
How to convert php array to utf8?
I have an array:
require_once ('config.php');
require_once ('php/Db.class.php');
require_once ('php/Top.class.php');
echo "db";
$db = new Db(DB_CUSTOM);
$db->connect();
$res = ...
0
votes
1answer
16 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
42 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
28 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
35 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
25 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
41 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
1answer
15 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
51 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
109 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
75 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
176 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
196 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
217 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
102 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
52 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
84 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
118 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
97 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
47 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
70 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
107 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
126 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
91 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
548 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
144 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
19 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
86 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
64 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
294 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
130 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
371 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
392 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
103 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
173 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
97 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
122 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
128 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 ...



