UTF-8 (Unicode Transformation Format, 8 bits) is a character encoding that describes each Unicode code point using a byte sequence of one to four bytes. It is backwards-compatible with ASCII while still supporting representation of all Unicode code points.

learn more… | top users | synonyms (1)

0
votes
2answers
58 views

NSString and no UTF-8 symbols

For some of you (I'm sure) this question is quite simple to answer, but I have some difficulties in understanding how to solve the problem. I have a .txt file containing a table like this: " 236 ? ...
2
votes
4answers
138 views

How to work with UTF-8 in C++, Conversion from other Encodings to UTF-8

I don't know how to solve that: Imagine, we have 4 websites: A: UTF-8 B: ISO-8859-1 C: ASCII D: UTF-16 My Program written in C++ does the following: It downloads a website and parses it. But it ...
0
votes
2answers
40 views

JSON character encoding vs utf8

i have a proplem with JSON character encoding.when i call ajax and return encode utf8 string by json_encode() my key world is 'áo' but after encode it return '\u00c1o' but in javascript,jquery i want ...
0
votes
1answer
22 views

Case insensitive search (and order by case insensitively) in a case-sensitive column

I have a case-sensitive colume(utf8_bin collation). I need to search a string case-insensitively and order the results case-insensitively. Is have written this query. SELECT customer_name FROM ...
1
vote
0answers
23 views

ssh backspace deletes one character instead of two (utf-8 symbols) [migrated]

Im accessing a remote computer using ssh and running a bash command to input symbols using standard input stream: read test;echo $test It's ok to input english letters and use backspace to ...
1
vote
1answer
34 views

Error with utf8 encoding

When I get data from some website, sometime the data is encode in utf8 but look like this: Thỏ , Nạt The accent mark is seperated from character when in fact these string must be: Thỏ, Nạt I ...
0
votes
2answers
99 views

How to encode UTF-8 for XML document in Java

I have a java program that read some stuff out of an excel sheet and creates XML. Long story short I need the string contained within the XML to only contain valid XML characters and to properly ...
0
votes
0answers
31 views

cannot be safely opened with encoding utf 8 “netbeans”

Ive created a WebApplication in NetBeans and try to connect to my mysql database with using Hibernate framework. Ive made all connections , but after Ive created the java classes with the "Mapping ...
0
votes
3answers
46 views

Latin-1 / UTF-8 encoding php

I have a db in UTF-8 encoding with a mixture of Latin-1. (I think that that is the problem) This is how the characters look in the database. İ (should be İ) è When I set the header to <meta ...
3
votes
0answers
50 views

Using Greek letters in LaTeX tables [migrated]

I have the following Rnw document which I intend should produce a small table with "a b c" and "α β γ". At the moment, the encoding seems to be causing problems. The funny thing is that the output in ...
1
vote
1answer
44 views

UTF-8 is giving me question marks

I have this simple PHP-script, which searches a mySQL database and outputs the result to the user. I used to use ISO-8859-1 as my charset, but was advised to use UTF-8. But I have trouble going from ...
0
votes
1answer
62 views

iso-8859-1 and utf8 in python

I have 2 two strings, and I want to compare it together. "H&#7895; tr&#7907; ng&#244;n ng&#7919;" I think this is iso-8859-1 encoding u'H\u1ed7 tr\u1ee3 ng\xf4n ng\u1eef' unicode. ...
-2
votes
1answer
36 views

SimpleXML & html entities = strange characters

I am getting a feed as such.. $posts = new SimpleXMLElement(WP_ROOT_URL . 'feed/', 0, true); In this feed one of the items I am getting contains a html entity, which is the entity for the "hyphen ...
0
votes
1answer
29 views

adding unicode characters to database issue

Hello iam really fighting to solve this problem i have a script to insert arabic letters to database my database and tables is utf-unicode_ci $title = make_safe($_POST['title']); $author = ...
1
vote
1answer
38 views

Japanese character missing from email

I am using codeignator framework for my project.Some Japanese character are missing from email when delivered.I checked the controller and all charcters are present.I checked config, email charaset ...
0
votes
1answer
27 views

Presenting Multiple Encodings in XML

I'm making available an email API that allows you to obtain the content of certain emails via XML/JSON. My problem is, I have a list view where I want to present the text of multiple emails at once. ...
0
votes
0answers
31 views

How to download a page in java and save it to UTF-8?

This function sends a request to server in UTF8 and receives in UTF8: public String downloadPage(String _url, String _reqm, String _params) { try { if (_reqm == null || (_reqm == ...
0
votes
1answer
32 views

Converting Email ISO-8859-1 to UTF-8 [duplicate]

I made a script to get email body from PIPE. Here is what I got: --_a09b8441-38d7-411d-93d3-19fe256fc2d3_ Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable ...
3
votes
1answer
82 views

Delphi 5, how to retrieve data from MySQL's tis620 fields?

I have a web application written in PHP which using MySQL as database back-end. To store my language(Thai) data, I'm using tis620 charset on my database tables, this setting is great for my web ...
0
votes
1answer
51 views

I want to correct PHP encoding problems on PHPLIST for SHIFT-JIS and UTF-8 foreign fonts

I have PHPLIST on my server which jammed with encoding Japanese fonts. I installed foreign Language pack, but still cannot encode SHIFT-JIS and UTF-8. How to correct PHP' s encoding in the files ...
0
votes
1answer
32 views

Unknown Encoding in IMAP Message

I am obtaining text/HTML BODY parts of email messages using the IMAP protocol. For this, what I do is use the BODYSTRUCTURE call to obtain the BODY index and the charset of a part, then use the ...
0
votes
1answer
28 views

Ruby Rails 3.2.x - How to find the UTF-8 character

I dont know how this happened, but most likely I must have accidentally added a UTF-8 character into one of the many files, whenever I now start rails s I get the error: [2013-04-19 21:56:34] ...
0
votes
2answers
70 views

Default Charset on Heroku (US-ASCII) causing problems

We have a maven--jetty-based Java app deployed on heroku. Locally, when I do: System.out.println("Default Charset = "+ Charset.defaultCharset()); String s = "Resumé of Schrödinger"; ...
0
votes
1answer
31 views

Open text file in browser tab in utf-8

There is this page where I give the user some links. Every link targets a text file. When the user clicks it just opens the text in the browser tab. How can I set the encoding to be utf8? The files ...
0
votes
2answers
72 views

XSLT Encoding Issue

I have the following XML: <item> <description><![CDATA[Euro sign: €]]></description> </item> When I run it against this XSL: <xsl:stylesheet version="2.0" ...
1
vote
3answers
39 views

&eacute;=é: need to show as it is

I am getting some response from server in text format, it's working fine but in some cases i didn't get string as it is. Explanation:- My db have one name like cupcaké but when i parse data it's ...
0
votes
1answer
36 views

Creating a UTF-8 string from hexadecimal code

In C++, it's possible create a UTF-8 string using this kind of notation: "\uD840\uDC50". However this doesn't work in PHP. Is there a similar notation? If not, is there any built-in way to create a ...
3
votes
2answers
83 views

Characters not displaying correctly on a UTF-8 website

I've done everything I can think of, but special characters are not displaying correctly on this webpage. For example, in the database it's: But on the site it's: Nouveaux R�alistes Here's ...
0
votes
2answers
77 views

PHP Cron Script - read from from CSV file and email (UTF-8?)

I am struggling with this issue for few days now, reading and trying whatever I came across with no solution found: Here is the bottom line of what I want to do: I have a members only system. when a ...
1
vote
2answers
70 views

How to convert a string to UTF-8 string format in WP7

I have a string in my WP7 application. I need to send this string to my server in UTF-8 format. How can i convert any string to UTF-8 format? I have tried this so far : UTF8Encoding utf8 = new ...
0
votes
0answers
26 views

CFStringRef from char* without providing encoding type

I have a C string: unsigned char* contents = readInFile(path); //sting bytes in some unknown NSStringEncoding encoding. I want to know the current NSStringEncoding value of contents. I want to do ...
-1
votes
1answer
73 views

Convert characters to UTF8 in MySQL (é to é)

I've got a MySQL problem. My whole website except my database is in UTF8. I just recently tried to convert it to UTF8 with all kind of commands, but the main issue is still there: the accents don't ...
1
vote
1answer
44 views

php - utf8 encoding the text twice. Will it have any negative effect? [duplicate]

MySQL Database returns utf8 encoded text. Basically, I used PDO attribute MYSQL_ATTR_INIT_COMMAND and passed: SET CHARACTER SET utf8 It returns utf8 encoded text. But some text in the database is ...
0
votes
1answer
43 views

Character encoding - copy/paste from web

This is more an educational question about character encoding (hobbyist coder here) - but I have encountered this specific problem: 1) I wrote a silly program in python 3, in the editor I am using ...
1
vote
1answer
101 views

UTF-8 text is garbled when form is posted as multipart/form-data in PHP

I have a PHP script to publish articles. It was working perfectly fine until we added the file uploading support. To enable uploading of files, we had to change enctype of tag to multipart/form-data. ...
-2
votes
0answers
18 views

How to display HerBew charaters from UTF8

I am using Codebase database in my backend. I use to write UTF8 format in my database. I am unable to display non english user contents in my website. utf8 to unicode failed to display content.
3
votes
2answers
149 views

Prevent XSLT transform from converting utf-8 XML into utf-16?

In Delphi XE2, I'm doing a xslt transform on a received XML file to remove all namespace information. Problem: It changes <?xml version="1.0" encoding="utf-8"?> into <?xml version="1.0" ...
0
votes
0answers
41 views

HTML2PDF encoding in page_footer

I have strange problem with encoding in HTML2PDF. content is encoded with utf-8 object is created with utf-8 declaration $html2pdf = new HTML2PDF('P', 'A4', 'fr', true, 'utf-8'); generated PDF is ...
1
vote
2answers
63 views

UTF-8 and charcters in Java and Eclipse IDE

public static void main(String[] args) throws UnsupportedEncodingException { String str = "अ"; byte[] bytes = str.getBytes("UTF-8"); for (byte b : bytes) { System.out.print(b + ...
0
votes
1answer
29 views

Converting encoded chars back to original character - PHP

My Database returns this following JSON with special chars. I need to convert it back to original chars: { "event_id":"5153", "name":"Event Test", "description":"Pers&ouml;nlichkeit ...
2
votes
1answer
59 views

Python 2.7.3 UTF-8 Encoding Irreversible

I've come across a few very troublesome strings while crawling the web. In particular, a page advertises as being UTF-7, and though it's not quite UTF-7 that doesn't appear to be the issue. I'm not ...
1
vote
0answers
66 views

How to parse hindi font from html using BeautifulSoup?

I want to get the contents of a tag using using BeautifulSoup. My code : html= "<html><body><td class="HindiTextGray" align="left" valign="top"> <br /> सूरत। ...
0
votes
1answer
49 views

No field names CSV Reader Python UTF-8

So I'm trying to open and read csv file that has no field names. Based on the research I've done, I'm pretty sure it's encoded in UTF-8. My csv has this formatting: ...
0
votes
0answers
47 views

Cyrillic in Excel / Editor shows question marks

My webapp generates a CSV file with normal UTF-8 encoding which contains Cyrillic symbols. The file reads just fine in python and the results also display in the browser. However, when I open it in ...
0
votes
4answers
78 views

Encode accentuated characters in json using php

I've a query result that contains some accentuated characters Like : CollectionTitle => Afleuréss But when i write a json file with json_encode($Result_Array) and retrieve the result it shows : ...
0
votes
1answer
31 views

Convert output of MySQL query to utf8

I have a table in my database and I want run a query like SELECT column1, column2 FROM my_table WHERE my_condition; but I want the mysql to return the column2 in utf8 encoding. Is it any function ...
0
votes
2answers
33 views

Converting standard looking characters to strange/crazy looking UTF-8 characters?

The inspiration for this question comes from this SO answer: http://stackoverflow.com/a/1732454/11125 I want to write a script to convert standard looking characters (e.g. letters in the English ...
-3
votes
1answer
30 views

Json Encode in PHP return weird signs [closed]

sI have database with hebrew letters in its records, when trying to encode those records into Json format, using php native function json_encode() I get malform string with signs like this: ...
0
votes
1answer
34 views

Encoding error PHP and Mysql for french [duplicate]

I have a function that adds words in my database and for some reason it's putting them in all weird. Here is my function : function change_team($picname, $text){ include 'dbconnector.php'; ...
4
votes
1answer
59 views

Definition of whitespace in Json

JSON specifies that "Whitespace can be inserted between any pair of tokens." What it does not specify is exactly what whitespace is. Should I read this as "old-fashioned ASCII whitespace" or "the ...

1 2 3 4 5 125