active questions tagged utf-8 - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T16:04:29Zhttp://stackoverflow.com/feeds/tag/utf-8http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1811856/adding-non-escaped-ampersands-to-html-with-nokogirixmlbuilder0Adding non-escaped Ampersands to HTML with Nokogiri::XML::Builderviatropos2009-11-28T07:18:01Z2009-11-28T19:06:09Z
<p>I would like to add things like bullet points "•" and such to html using the XML Builder in Nokogiri, but everything is being escaped. How do I prevent it from being escaped?</p>
<p>I would like the result to be: </p>
<p><pre><code>
<code><span>&#8226;</span> </code>
</code></pre>
rather than </p>
<p><pre><code>
<code><span>&amp;#8226;</span> </code>
</code></pre></p>
<p>What am I missing? </p>
<p>I'm just doing this: </p>
<p><pre><code>
<code>xml.span {
xml.text "&#8226;\ "
}</code>
</code></pre></p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1796025/re-utf-8-php-and-xml-mysql0re: UTF-8, PHP and XML MysqlLizard2009-11-25T10:28:20Z2009-11-28T14:42:08Z
<p>This is relating to <a href="http://stackoverflow.com/questions/1791082/utf-8-php-and-xml-mysql">http://stackoverflow.com/questions/1791082/utf-8-php-and-xml-mysql</a>, which I am still trying to get my head around.</p>
<p>I Have a couple of separate questions that will hopefully help me understand how to resolve the issues I am having.</p>
<p>I am trying to read values from a database and output into a file in UTF-8 format. But I am having encoding issues, so i thought I would strip back all my code ans start with:</p>
<pre><code>$string = "Otivägen";
// then output to a file.
</code></pre>
<p>But in <code>vim</code> i cant even enter the that string, every time I paste it in I get <code>Otivägen</code></p>
<p>I tried to create a blank PHP file with only that string and upload it, but when I <code>cat</code> the file again I get <code>Otivägen</code>. </p>
<p>My questions are ...</p>
<ol>
<li>Why is <code>vim</code> displaying it like
this?</li>
<li>If the file is downloaded would it
display correctly if an application
was expecting UTF-8?</li>
<li>How can I output this string into a
file that will eventually be an XML
file in UTF-8 encoding.</li>
</ol>
<p>My understanding of encoding is limited at the moment, and I am trying to understand it.</p>
http://stackoverflow.com/questions/1811598/why-my-typeset-function-doesnt-work-for-non-latin-asian-characters0Why my typeset function doesn't work for non-latin/Asian characters?Michael Mao2009-11-28T04:51:59Z2009-11-28T05:15:48Z
<p>Hi all:</p>
<p>I've convinced my boss to do the typesetting stuff using PHP(PHP Version 5.2.8).
And this is what I got so far(set Character encoding to Unicode(UTF-8) if you see misrendered Japanese characters):</p>
<p><a href="http://chenximao.net/apps/typesetter/" rel="nofollow">demo page at my personal website</a></p>
<p>Basically, if you copy and paste the latin sample paragraph into the textarea and click the button, everything works well, you can verify that by pasting the result into Notepad for a check(albeit the fact that I haven't done anything to use hyphens to denote words separated by new lines).</p>
<p>However, when it comes with non-latin/Asian characters, nothing got printed out. I didn't get any error message generated, just cannot see anything at all...</p>
<p>The following is my code:</p>
<pre><code><?php
$words = typesetWords($_POST['words']);
echo json_encode(array('feedback' => $words));
function typesetWords($words, $lineLength = 70)
{
try
{
$result = '';
$paragraphs = explode("\n\n", $words);
foreach($paragraphs as $paragraph)
{
$paragraph = str_replace("\n", "", $paragraph);
$length = strlen($paragraph);
$numberOfLines = intval($length / $lineLength);
$tmp = '';
if($numberOfLines > 0)
{
for($i = 0; $i < $numberOfLines; $i++)
$tmp .= substr($paragraph, $i * $lineLength, $lineLength)."\n";
$tmp .= substr($paragraph, -1 * ($length % $lineLength))."\n\n";
$result .= $tmp;
}
else $result .= $paragraph."\n\n";
}
}
catch(Exception $e)
{
return $e->getMessage();
}
return $result;
}
</code></pre>
<p>?></p>
<p>I tried to return what was sent by the form directly back, and I did see the Japanese sample paragraph without problems. So I reckon one of the PHP library functions must have
caused the error, but I couldn't tell which one and how to fix it...</p>
<p>Many thanks in advance!</p>
http://stackoverflow.com/questions/1796910/what-problems-should-i-expect-when-moving-legacy-perl-code-to-utf-86What problems should I expect when moving legacy Perl code to UTF-8?rassie2009-11-25T13:28:35Z2009-11-27T23:49:19Z
<p>Until now, the project I work in used ASCII only in the source code. Due to several upcoming changes in I18N area and also because we need some Unicode strings in our tests, we are thinking about biting the bullet and move the source code to UTF-8, while using the <code>utf8</code> pragma (<code>use utf8;</code>)</p>
<p>Since the code is in ASCII now, I don't expect to have any troubles with the code itself. However, I'm not quite aware of any side effects we might be getting, while I think it's quite probable that I will get some, considering our environment (perl5.8.8, Apache2, mod_perl, MSSQL Server with FreeTDS driver).</p>
<p>If you have done such migrations in the past: what problems can I expect? How can I manage them?</p>
http://stackoverflow.com/questions/1791082/utf-8-php-and-xml-mysql1UTF-8, PHP and XML MysqlLizard2009-11-24T16:09:50Z2009-11-27T01:59:24Z
<p>I am having great problems solving this one:</p>
<p>I have a mysql database encoding latin1_swedish_ci and a table that stores names and addresses.</p>
<p>I am trying to output a UTF-8 XML file, but I am having problems with the following string:</p>
<p><code>Otivägen</code> it is being outputted as <code>Otivägen</code> when i vim the file. Also when opened it IE i get </p>
<p>"<code>An invalid character was found in text content. Error processing resource</code>"</p>
<p>I have the following code:</p>
<pre><code>function fixEncoding($in_str)
{
$cur_encoding = mb_detect_encoding($in_str) ;
if($cur_encoding == "UTF-8" && mb_check_encoding($in_str,"UTF-8"))
return $in_str;
else
return utf8_encode($in_str);
}
header("Content-type: text/plain;charset=utf-8");
$mystring = "Otivägen" // this is actually obtained from database;
$myxml = "<myxml>
....
<node>".$mystring."</node>
....
</myxml>
";
$myxml = fixEncoding($myxml);
</code></pre>
<p>The actual XML output is below:</p>
<pre><code><?xml version="1.0" encoding="UTF-8" ?>
<myxml>
....
<node>Otivägen</node>
....
</myxml>
</code></pre>
<p>Any ideas how I can output the file so in vim the file reads <code>Otivägen</code> and not <code>Otivägen</code>?</p>
<p><strong>EDIT:</strong></p>
<p>I did <code>mysql_client_encoding()</code> and got <code>latin1</code><br />
I then did <code>mysql_set_charset()</code> <br />
and again ran <code>mysql_client_encoding()</code> and got utf8, but still the same outputting issues.</p>
<p><strong>Edit 2</strong></p>
<p>I have logged into the command line and run the query <code>SELECT address1 FROM address WHERE id = 1000;</code></p>
<pre><code>SELECT address1 FROM address WHERE id = 1000;
Current database: ftpuser_db
+-------------+
| address1 |
+-------------+
| Otivägen 32 |
+-------------+
1 row in set (0.06 sec)
</code></pre>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1805802/php-convert-unicode-codepoint-to-utf-82PHP: Convert unicode codepoint to UTF-8Anthony2009-11-26T21:43:15Z2009-11-26T22:36:24Z
<p>I have my data in this format: <code>U+597D</code> or like this <code>U+6211</code>. I want to convert them to UTF-8 (original characters are 好 and 我). How can I do it?</p>
http://stackoverflow.com/questions/1804887/problems-with-character-encodings-in-lamp-app-utf-8-or-not2Problems with character encodings in LAMP app - UTF-8 or not?mandel2009-11-26T17:26:57Z2009-11-26T18:40:30Z
<p>I'm still learning the ropes with PHP & MySQL and I know I'm doing something wrong here with how character sets are set up, but can't quite figure out from reading here and on the web what I should do.</p>
<p>I have a standard LAMP installation with PHP 5, MySQL 5. I set everything up with the defaults. When some of my users input comments to our database some characters show up incorrectly - mostly apostrophes and em dashes at the moment. In MySQL apostrostrophes show up as ’. They display on the page this way also (I'm using htmlentities to output user comments). </p>
<p>In phpMyAdmin it says my MySQL Charset is UTF8-Unicode. </p>
<p>In my database my tables are all set up with the default Latin1-Swedish-ci. </p>
<p>My web pages all have meta http-equiv="Content-Type" content="text/html; charset=utf-8" </p>
<p>When I look at the site's http headers I see: Content-Type: text/html</p>
<p>Like a newbie, I hadn't considered character sets at all until things started looking odd on some of my pages. So does it make most sense for me to convert everything to utf-8 and will this affect my PHP code? Or should I try to get it all into Latin? And do I have to go into the database and replace these odd codes, or will they magically display once I set up the charsets properly? All the fiddling I've done so far hasn't helped (I set the http headers to utf-8, and also tried latin). </p>
http://stackoverflow.com/questions/1803675/communicate-with-a-process-in-utf-8-on-a-cp1252-consoless0communicate with a process in utf-8 on a cp1252 consolessMapad2009-11-26T13:31:19Z2009-11-26T14:09:43Z
<p>I need to control a program by sending commands in utf-8 encoding to its standard input. For this I run the program using <code>subprocess.Popen()</code>:</p>
<pre><code>proc = Popen("myexecutable.exe", shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE)
proc.stdin.write(u'ééé'.encode('utf_8'))
</code></pre>
<p>If I run this from a cygwin utf-8 console, it works. If I run it from a windows console (encoding ='cp1252') this doesn't work. Is there a way to make this work without having to install a cygwin utf-8 console on each computer I want it to run from ? (NB: I don't need to output anything to console)</p>
http://stackoverflow.com/questions/1795504/case-fold-utf-8-without-knowing-the-language2Case fold UTF-8 without knowing the languageKim Gräsman2009-11-25T08:48:50Z2009-11-26T08:24:40Z
<p>I'm trying to evaluate different strategies for case insensitive UTF-8 string comparison.</p>
<p>I've read some material from the Unicode consortium, experimented with ICU and tried to come up with various quality-of-implementation alternatives.</p>
<p>On multiple occasions I've seen texts differ between Simple Case Mapping and Full Case Mapping, and I wanted to make sure I understand the difference entirely.</p>
<p>As I read it, Simple Case Mapping is "context-free", i.e. doesn't need to know what language the payload is. This will give approximate results, due to the Turkic "I/ı/İ/i" debacle.</p>
<p>Full Case Mapping, on the other hand, needs to know the language of the payload to be able to perform the mapping. With that extra information, it can take special measures to cover cases where "Kim" as a Turkic string should become "KİM" in upper-case, but "Kim" as an English string, should become "KIM" in upper-case.</p>
<p>Have I got that right?</p>
<p>Are there other examples of "multi-faceted" code points that fold differently for different languages?</p>
<p>Thanks!</p>
<p><strong>UPDATE:</strong> One of the sources mentioning simple case mapping as language independent is <a href="http://userguide.icu-project.org/transforms/casemappings" rel="nofollow">ICU's documentation</a>. I interpreted that as Unicode truth, but maybe it's just a statement of the implementation?</p>
http://stackoverflow.com/questions/1799977/excel-file-not-generating-after-utf-8-encoding-chosen0excel file not generating after UTF-8 encoding chosenrover122009-11-25T21:12:09Z2009-11-25T23:07:54Z
<p>This part of my code was creating xls file successfuly </p>
<pre><code>FileOutputStream fileOut = new FileOutputStream("c:\\Decrypted.xls");
wb.write(fileOut);
fileOut.close();
</code></pre>
<p>when other part of the code had this statement ( which was before the above code )</p>
<pre><code>in = new ByteArrayInputStream(theCell_00.getBytes(""));
</code></pre>
<p>But when I changed it to </p>
<pre><code>in = new ByteArrayInputStream(theCell_00.getBytes("UTF-8"));
</code></pre>
<p>this part </p>
<pre><code>FileOutputStream fileOut = new FileOutputStream("c:\\Decrypted.xls");
wb.write(fileOut);
fileOut.close();
</code></pre>
<p>is not generating any xls file anymore.</p>
<p>I need to change the encoding to UTF-8 as I have done in ByteArrayInputStream line, so what should I do that the code still generates xls file. </p>
<p>In case you need it, the two parts are taken from this function. </p>
<pre><code>public void getExcel() throws Exception {
try {
ByteArrayInputStream in = null;
FileOutputStream out = null;
HSSFWorkbook wb = new HSSFWorkbook();
HSSFSheet sheet = wb.createSheet("new sheet");
/*
* KeyGenerator kgen = KeyGenerator.getInstance("AES"); kgen.init(128); SecretKey key =
* kgen.generateKey(); byte[] encoded = key.getEncoded();
*
* IOUtils.write(encoded, new FileOutputStream(new
* File("C:\\Users\\abc\\Desktop\\key.txt")));
*/
FileInputStream fin = new FileInputStream("C:\\key.txt");
DataInputStream din = new DataInputStream(fin);
byte b[] = new byte[16];
din.read(b);
InputStream excelResource = new FileInputStream(path);
Workbook rwb = Workbook.getWorkbook(excelResource);
int sheetCount = rwb.getNumberOfSheets();
Sheet rs = rwb.getSheet(0);
int rows = rs.getRows();
int cols = rs.getColumns();
for (int i = 0; i < rows; i++) {
for (int j = 0; j < Col.length; j++) {
String theCell_00 = rs.getCell(j, i).getContents();
System.out.println("the Cell Content : " + theCell_00);
in = new ByteArrayInputStream(theCell_00.getBytes(""));
out = new FileOutputStream("c:\\Decrypted.txt");
try {
// System.out.println(b);
SecretKey key1 = new SecretKeySpec(b, "AES");
// Create encrypter/decrypter class
AESDecrypter encrypter = new AESDecrypter(key1);
encrypter.encrypt(new ByteArrayInputStream(theCell_00.getBytes()),
new FileOutputStream("temp.txt"));
// Decrypt
// encrypter.encrypt(,new FileOutputStream("Encrypted.txt"));
encrypter.decrypt(in, out);
try {
if (out != null)
out.close();
} finally {
if (in != null)
in.close();
}
// encrypter.decrypt(new
// ByteArrayInputStream(theCell_00.getBytes(Latin_1)),new
// FileOutputStream("c:\\Decrypted.txt"));
String filename = "c:\\Decrypted.txt";
BufferedReader bufferedReader = null;
try {
// Construct the BufferedReader object
bufferedReader = new BufferedReader(new FileReader(filename));
// System.out.println(bufferedReader.readLine());
String line = null;
while ((line = bufferedReader.readLine()) != null) {
// Process the data, here we just print it out
/*
* HSSFWorkbook wb = new HSSFWorkbook(); HSSFSheet sheet =
* wb.createSheet("new sheet"); HSSFRow row = sheet.createRow(2);
*/
// System.out.println(i);
HSSFRow row = sheet.createRow(i);
int s_col = 0;
row.createCell(s_col).setCellValue(line);
// s_col++;
// row.createCell(1).setCellValue(new Date());
FileOutputStream fileOut = new FileOutputStream("c:\\Decrypted.xls");
wb.write(fileOut);
fileOut.close();
// System.out.println(line);
}
} catch (FileNotFoundException ex) {
ex.printStackTrace();
} catch (IOException ex) {
ex.printStackTrace();
} finally {
// Close the BufferedReader
try {
if (bufferedReader != null)
bufferedReader.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
rwb.close();
} catch (Exception ex) {
ex.printStackTrace();
ex.getMessage();
}
}
</code></pre>
http://stackoverflow.com/questions/1799420/yui-datatable-xhr-get-not-using-utf80YUI datatable XHR get not using UTF8Singularity2009-11-25T19:32:16Z2009-11-25T19:40:50Z
<p>OK, so my datasource is serving json and it's UTF8 encoded. Viewing the json result in the browser or Firebug confirms this. But when the YUI datatable displays the results in a table the UTF encoding is lost, resulting in G�teborg instead of Göteborg</p>
<p>I see according to the documentation provided by Yahoo that you can specify the connection manager to use UTF8 when posting data but I don't see anything about <code>get</code>'s over XHR.</p>
<pre><code>var myDataSource =
new YAHOO.util.DataSource("crudYuiSqlService.rsb?@fmtoptions=exparen&@json&");
myDataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
myDataSource.connMethodPost = true;
myDataSource.responseSchema = {
resultsList: "items",
fields: \[{
key: "phone",
parser: "string"
}, {
key: "city",
parser: "string"
}, {
key: "contacttitle",
parser: "string"
}, {
key: "companyname",
parser: "string"
}]
};
</code></pre>
http://stackoverflow.com/questions/1525830/how-can-i-use-filesystem-functions-in-php-using-utf-8-strings2How can I use filesystem functions in PHP, using UTF-8 strings?Acacio Nerull2009-10-06T14:10:44Z2009-11-25T16:37:06Z
<p>I can't use mkdir to create folders with UTF-8 characters.</p>
<pre><code><?php
$dir_name = "Depósito";
mkdir($dir_name );
?>
</code></pre>
<p>But, when I browse this folder in Windows Explorer, the folder name looks like this:</p>
<pre><code>Depósito
</code></pre>
<p>What should I do?</p>
http://stackoverflow.com/questions/1780656/multilanguage-utf-8-website-with-arabic2Multilanguage UTF-8 website with ArabicFrankie2009-11-23T01:10:33Z2009-11-25T16:33:26Z
<p>I will be coding a website that will have <strong>Arabic as a supported language</strong>. With UTF8 unicode I believe I can cover Arabic alphabet. I've also read that it reads right to left so I guess I should align right when displaying on Arabic.</p>
<p>I'm asking the community for <strong>experience and possible pitfalls</strong>.</p>
<ul>
<li>utf-8 unicode</li>
<li>css selector to swith text alignment</li>
</ul>
<p>Thank you in advance for your input.</p>
http://stackoverflow.com/questions/1612244/how-can-i-convert-an-input-file-to-utf-8-encoding-in-perl4How can I convert an input file to UTF-8 encoding in Perl?Mike 2009-10-23T09:08:17Z2009-11-25T14:12:21Z
<p>I already know how to convert the non-utf8-encoded content of a file line by line to UTF-8 encode, using something like the following code:</p>
<pre><code># outfile.txt is in GB-2312 encode
open my $filter,"<",'c:/outfile.txt';
while(<$filter>){
#convert each line of outfile.txt to UTF-8 encoding
$_ = Encode::decode("gb2312", $_);
...}
</code></pre>
<p>But I think Perl can directly encode the whole input file to UTF-8 format, so I've tried something like </p>
<pre><code>#outfile.txt is in GB-2312 encode
open my $filter,"<:utf8",'c:/outfile.txt';
</code></pre>
<p>(Perl says something like "utf8 "\xD4" does not map to Unicode" )</p>
<p>and</p>
<pre><code>open my $filter,"<",'c:/outfile.txt';
$filter = Encode::decode("gb2312", $filter);
</code></pre>
<p>(Perl says "readline() on unopened filehandle!)</p>
<p>They don't work. But is there some way to directly convert the input file to UTF-8 encode?</p>
<p><strong>Update:</strong></p>
<p>Looks like things are not as simple as I thought. I now can convert the input file to UTF-8 code in a roundabout way. I first open the input file and then encode the content of it to UTF-8 and then output to a new file and then open the new file for further processing. This is the code:</p>
<pre><code>open my $filter,'<:encoding(gb2312)','c:/outfile.txt';
open my $filter_new, '+>:utf8', 'c:/outfile_new.txt';
print $filter_new $_ while <$filter>;
while (<$filter_new>){
...
}
</code></pre>
<p>But this is too much work and it is even more troublesome than simply encode the content of $filter line by line.</p>
http://stackoverflow.com/questions/1785200/change-emacs-default-coding-system1Change Emacs Default Coding SystemSaterus2009-11-23T18:53:10Z2009-11-25T09:04:21Z
<p>My problem stems from Emacs inserting the coding system headers into source files containing non-ascii characters:</p>
<pre><code># -*- coding: utf-8 -*-
</code></pre>
<p>My coworkers do not like these headers being checked into our repositories. I don't want them inserted into my files because Emacs automatically detects that the file should be UTF-8 regardless so there doesn't seem to be any benefit to anyone.</p>
<p>I would like to simply set Emacs to use UTF-8 automatically for all files, yet it seems to disagree with this idea. In an effort to fix this, I've added the following to my .emacs:</p>
<pre><code>(prefer-coding-system 'utf-8)
(setq coding-system-for-read 'utf-8)
(setq coding-system-for-write 'utf-8)
</code></pre>
<p>This does not seem to solve my problem. Emacs still inserts the coding-system headers into my files. Anyone have any ideas?</p>
http://stackoverflow.com/questions/1792602/what-is-the-fool-proof-way-to-convert-some-string-utf-8-or-else-to-a-simple-asc2What is the fool proof way to convert some string (utf-8 or else) to a simple ASCII string in pythonnoam2009-11-24T20:08:18Z2009-11-25T00:19:45Z
<p>Inside my python scrip, I get some string back from a function which I didn't write. The encoding of it varies. I need to convert it to ascii format. Is there some fool-proof way of doing this? I don't mind replacing the non-ascii chars with blanks or something else...</p>
http://stackoverflow.com/questions/1344692/i-need-help-fixing-broken-utf8-encoding3I need help fixing Broken UTF8 encodingJayrox2009-08-28T02:14:51Z2009-11-24T19:09:03Z
<p>I am in the process of fixing some bad UTF8 encoding. I am currently using PHP 5 and MySQL</p>
<p>In my database I have a few instances of bad encodings that print like: î</p>
<ul>
<li>The database collation is</li>
<li>utf8_general_ci PHP is using a proper</li>
<li>UTF8 header Notepad++ is set to use</li>
<li>UTF8 without BOM database management is handled in phpMyAdmin</li>
<li>not all cases of accented characters are broken</li>
</ul>
<p>What I need is some sort of function that will help me map the instances of î, ÃÂ, ü and others like it to their proper accented UTF8 characters.</p>
http://stackoverflow.com/questions/1012120/iso-8859-1-to-utf8-in-asp-net-21ISO-8859-1 to UTF8 in ASP.NET 2Gordon Carpenter-Thompson2009-06-18T11:19:13Z2009-11-24T00:17:56Z
<p>We've got a page which posts data to our ASP.NET app in ISO-8859-1</p>
<pre><code><head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<title>`Sample Search Invoker`</title>
</head>
<body>
<form name="advancedform" method="post" action="SearchResults.aspx">
<input class="field" name="SearchTextBox" type="text" />
<input class="button" name="search" type="submit" value="Search &gt;" />
</form>
</code></pre>
<p>and in the code behind (SearchResults.aspx.cs)</p>
<pre><code>System.Collections.Specialized.NameValueCollection postedValues = Request.Form;
String nextKey;
for (int i = 0; i < postedValues.AllKeys.Length; i++)
{
nextKey = postedValues.AllKeys[i];
if (nextKey.Substring(0, 2) != "__")
{
// Get basic search text
if (nextKey.EndsWith(XAEConstants.CONTROL_SearchTextBox))
{
// Get search text value
String sSentSearchText = postedValues[i];
System.Text.Encoding iso88591 = System.Text.Encoding.GetEncoding("iso-8859-1");
System.Text.Encoding utf8 = System.Text.Encoding.UTF8;
byte[] abInput = iso88591.GetBytes(sSentSearchText);
sSentSearchText = utf8.GetString(System.Text.Encoding.Convert(iso88591, utf8, abInput));
this.SearchText = sSentSearchText.Replace('<', ' ').Replace('>',' ');
this.PreviousSearchText.Value = this.SearchText;
}
}
}
</code></pre>
<p>When we pass through Merkblätter it gets pulled out of postedValues[i] as Merkbl�tter
The raw string string is Merkbl%ufffdtter</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1784376/export-and-import-users-and-database-collation-issue1export and import users and database collation issueAli2009-11-23T16:42:24Z2009-11-23T18:54:03Z
<p>Hi ,
I have mambo 4.6.5 on my source site and joomla 1.5 on destination site. I'm going to move users from first one to second. so I install <a href="http://extensions.joomla.org/extensions/migration-a-conversion/users-import-a-export/5430" rel="nofollow"><strong>userport component</strong></a> on joomla 1.5 and then went to mambo database and select my users with this Query :</p>
<pre><code>SELECT name, username, email, password FROM mos_users
</code></pre>
<p>and export them to a CSV file which is all "userport" needs.
some of user's name are Persian and UTF-8 . as you see in below some of texts are disassemble due to UTF-8 unicode while they have shown correctly in Backend and frontend section of mambo.
<img src="http://i.imagehost.org/0422/2%5F5.jpg" alt="mambo Database">
(mambo database)</p>
<p>The problems is here :
when i import my users in joomla 1.5 via userport, the texts that seems disassemble in database (<strong><em>But shows correctly in mambo simultaneity !</em></strong>) ; are as when shows in mambo database and remain ill in joomla administrator :
<img src="http://i.imagehost.org/0675/1%5F34.jpg" alt="joomla Administrator">
(joomla Administrator)</p>
<p>What's the solution?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1784830/spring-jms-encoding0Spring Jms : encodingFarid2009-11-23T17:51:36Z2009-11-23T17:51:36Z
<p>Hi everyone,</p>
<p>My application is sending messages to IBM MQ using JMS, through Spring.</p>
<p>We had some issue with our application, on it's web page side, because the messages (displayed as xml file) where not encoded into UTF-8, so I fixed that thanks to the help of some guys on the forum. I was wondering if I need to care of this encoding when I am using JMS ? To be honest I don't think so, I don't see where I could specify that. I think this is rather something to be set by the MQ guys on their side, what do you think ?</p>
<p>Thanks ! </p>
<p>F</p>
http://stackoverflow.com/questions/1782066/should-i-happily-stay-with-utf-8-or-should-i-be-ready-to-change-the-encoding2Should I happily stay with UTF-8 or should I be ready to change the encoding?Kaitsuli2009-11-23T09:36:34Z2009-11-23T09:46:32Z
<p>I've built (or I'm building) an application that supports a wide variety of languages. I'm using UTF-8 right now because as I see it, it supports all languages in this world. (?)</p>
<p>However, after reading the article on Wikipedia, it states that while UTF-8 currently uses only 10% of its potential space, there's a possibility that in the future UTF-8 won't be enough?</p>
<p>Should I write my application (which happens to be a web application) to support other character sets as well? Am I worrying over nothing?</p>
http://stackoverflow.com/questions/1775622/detect-utf-16-file-content0detect UTF-16 file contentSoubok2009-11-21T14:29:58Z2009-11-23T06:54:26Z
<p>Is it possible to know if a file has unicode (16-byte per char) or 8-bit ASCII content ?</p>
http://stackoverflow.com/questions/1780204/switch-website-encoding-from-iso-8859-1-to-utf-81Switch website encoding from ISO-8859-1 to UTF-8justinl2009-11-22T22:17:58Z2009-11-22T22:37:31Z
<p>I am trying to convert my existing PHP webpage to use UTF-8 encoding.</p>
<p>To do so, I have done the following things:</p>
<ol>
<li>specified UTF-8 as the charset in the meta content tag at the start of my webpage.</li>
<li>change the default_charset to UTF-8 in the php.ini.</li>
<li>specified UTF-8 as the iconv encoding in the php.ini file.</li>
<li>specified UTF-8 in my .htaccess file using: AddDefaultCharset UTF-8.</li>
</ol>
<p>Yet after all that, when i echo mb_internal_encoding(), it shows as ISO-8859-1. What am I missing here? I know I could use auto_prepend to attach a script that changes the default encoding to UTF-8, but I'm just trying to understand what I'm missing.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1779692/percent-encoded-utf-8-to-ascii8-bit-conversion0Percent Encoded UTF-8 to Ascii(8-bit) conversionzacaj2009-11-22T19:23:58Z2009-11-22T21:06:29Z
<p>Im reading in urls and they often have percent encoded characters.</p>
<p>Example: %C3%A9 is actually é</p>
<p>According to <a href="http://www.microsystools.com/products/sitemap-generator/faq/character-percentage-url-encoding/" rel="nofollow">http://www.microsystools.com/products/sitemap-generator/faq/character-percentage-url-encoding/</a> , characters in the upper half of 8-Bit ASCII (128-255) are encoded as UTF-8, then their bytes are saved as hex. Now, when I get my URL, the %HEX's have been reencoded as 8-bit ascii, and I need to convert those back to their true 8bit ascii. Is there any function/library I can use, or else, how would I go about the conversion? </p>
<p>Im using C/C++.</p>
http://stackoverflow.com/questions/1773169/funny-characters-in-visual-studio-output-window0Funny characters in Visual Studio output windowunknown (google)2009-11-20T20:52:30Z2009-11-22T10:22:45Z
<p>I have written an External Tool that uses plink.exe to execute gcc on a Linux system and then capture the output back on VS's output window (there is a checkmark in Tools/External Tools/Use Output Window). But Linux outputs with utf-8 and so I get some garbage. Is there any way to get VS to translate that utf-8 output to readable output?</p>
<p>e.g., Linux is trying to output this:
test.c:214: warning: conflicting types for ‘test_zero_read’</p>
<p>but it shows up in VS's output window like this:
test.c:214: warning: conflicting types for ‘test_zero_read’</p>
http://stackoverflow.com/questions/1211624/how-do-i-encode-utf-8-using-the-xstream-framework1How do I encode UTF-8 using the XStream framework?unknown (google)2009-07-31T09:44:32Z2009-11-20T18:30:39Z
<p>Per XStream's FAQ its default parser does not preserve UTF-8 document encoding, and one must provide their own encoder. How does one do this?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1764832/how-do-you-think-google-is-handling-this-encoding-issue1How do you think Google is handling this encoding issue?JasonStoltz2009-11-19T16:57:19Z2009-11-20T14:05:14Z
<p>I recently came across an encoding issue specific to how Firefox encodes URLs directly entered into the address bar. It basically looks like the default Firefox character encoding for URLs is NOT UTF-8, which is the case with most browsers. Additionally, it looks like they are trying to make some intelligent decisions as to what character encoding to use, based on the content of the URL.</p>
<p>For example, if you enter a URL directly into the address bar (I'm using Firefox 3.5.5) with a 'q' parameter, you will get the following results:</p>
<p>For the given query string parameter, this is how it's actually encoded in the http request:<br/>
1) ...q=Književni --> q=Knji%9Eevni (This appears to be iso-8859-1 encoded)<br/>
2) ...q=漢字 --> q=%E6%BC%A2%E5%AD%97 (This appears to be UTF-8 encoded)<br/>
3) ...q=Književni漢字 --> Knji%C5%BEevni%E6%BC%A2%E5%AD%97 (This appears to be UTF-8 encoded ... which is odd, because notice that the first part of the value is the same as 1, which was iso-8859-1 encoded).</p>
<p>So, this really shouldn't be a big deal, right? Well, for me, not totally, but sort of. In the application I'm working on, we have a search box in our global navigation. When a user submits a search term in our search box, the 'q' parameter (like in our example, the parameter that holds the query string value) is submitted on the request and is UTF-8 encoded and all is well and good.</p>
<p>However, the URL that then appears in the address bar contains the decoded form of that URL, so the q parameter looks like "q=Književni". Now, as I mentioned before, if a user then presses the ENTER key to submit what is in the address bar, the "q=Književni" parameter is now encoded to iso-8859-1 and gets sent to our server as "q=Knji%9Eevni". The problem with this is that we are always expecting a UTF-8 encoded URL ... so when we recieve this parameter our application does not know how to interpret it and it can cause some strange results.</p>
<p>As I mentioned before, this appears to ONLY be a Firefox issue, and it would be rare that a user would actually run into this scenario, so it is not too concerning for us. However, I happened to notice that Google actually handles this quite nicely. Typing in the following URL using either of the differently encoded forms of the query string parameter will return nice results in Google:</p>
<p><a href="http://www.google.com/search?q=Knji%C5%BEevni" rel="nofollow">http://www.google.com/search?q=Knji%C5%BEevni</a> <br />
<a href="http://www.google.com/search?q=Knji%9Eevni" rel="nofollow">http://www.google.com/search?q=Knji%9Eevni</a></p>
<p>So my question really is, how do you think they handle this scenario? Additionally, does anyone else see the same strange Firefox behavior?</p>
http://stackoverflow.com/questions/1768854/why-does-stdout-decoding-fail-when-adding-carriage-return3Why does stdout decoding fail when adding carriage return? kai19682009-11-20T07:13:35Z2009-11-20T10:50:22Z
<p>The following java code does exactly what is expected:</p>
<pre><code>1 String s = "♪♬♪♪♬♪♪♬♪♪♬♪♪♬♪♪♬♪";
2 for(int i=0; i < s.length(); i++)
3 {
4 System.out.print(s.substring(i,i+1));
5 //System.out.print("\r");
6 Thread.currentThread().sleep(500);
7 }
</code></pre>
<p>But when I try to add carriage return by commenting in line 5 it goes printing ?s.
Why is it and how will I fix it?</p>
<p>(I also tried with "\u240d" for carriage return - same thing).</p>
<p>EDIT: The output goes to a bash on Mac OS X. </p>
http://stackoverflow.com/questions/1736102/how-can-i-set-the-default-file-format-in-the-delphi-ide-to-utf82How can I set the default file format in the Delphi IDE to UTF8?mjustin2009-11-15T00:21:56Z2009-11-18T21:56:58Z
<p>Delphi 2009 sets the default file format for new source code files to ANSI, this makes the source code platform-dependent.</p>
<p>Even for a new XSD file created in the IDE, which by default starts with this line</p>
<pre><code><?xml version="1.0" encoding="UTF-8" ?>
</code></pre>
<p>Delphi sets the file format to ANSI (this looks like a bug, for new XML and XSLT documents UTF8 is selected by default).</p>
<p>Is there a hidden option to set the default file format for source code files?</p>
http://stackoverflow.com/questions/1759195/why-am-i-running-out-of-bytes-for-the-stream-while-performing-an-http-post1Why am I running out of bytes for the stream while performing an HTTP POST?Broam2009-11-18T21:25:55Z2009-11-18T21:56:29Z
<p>This is driving me nuts:</p>
<pre><code> WebRequest request = WebRequest.Create(url);
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = Encoding.UTF8.GetByteCount(data);
Stream reqs = request.GetRequestStream();
StreamWriter stOut = new StreamWriter(reqs, Encoding.UTF8);
stOut.Write(data);
stOut.Flush();
</code></pre>
<p>I get an exception that I've run out of bytes in the stream...but I've used the same encoding to get the byte count!</p>
<p>Using ASCII this doesn't fail.
Is this because of the UTF-8 BOM that Windows likes to add in?</p>