active questions tagged encoding - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T14:36:23Zhttp://stackoverflow.com/feeds/tag/encodinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/12765/strange-characters-in-php7Strange characters in PHPpassaf2008-08-15T21:18:30Z2009-12-06T12:06:11Z
<p>This is driving me crazy.</p>
<p>I have this one php file on a test server at work which does not work.. I kept deleting stuff from it till it became </p>
<pre>
<?
print 'Hello';
?>
</pre>
<p>it outputs </p>
<blockquote>
<p>Hello</p>
</blockquote>
<p>if I create a new file and copy / paste the same script to it it works!
Why does this one file give me the strange characters all the time?</p>
http://stackoverflow.com/questions/1854784/problem-with-latex-hyperref1Problem with LaTeX hyperrefcupakob2009-12-06T08:37:32Z2009-12-06T09:52:15Z
<p>i have an url with cyrilic characters:</p>
<pre><code>http://www.pravoslavie.bg/Възпитание/Духовно-и-светско-образование
</code></pre>
<p>when i compile the document, i get following as url:</p>
<pre><code>http://www.pravoslavie.bg/%5CT2A%5CCYRV%20%5CT2A%5Ccyrhrdsn%20%5CT2A%5Ccyrz%20%5CT2A%5Ccyrp%20%5CT2A%5Ccyri%20%5CT2A%5Ccyrt%20%5CT2A%5Ccyra%20%5CT2A%5Ccyrn%20%5CT2A%5Ccyri%20%5CT2A%5Ccyre%20/%5CT2A%5CCYRD%20%5CT2A%5Ccyru%20%5CT2A%5Ccyrh%20%5CT2A%5Ccyro%20%5CT2A%5Ccyrv%20%5CT2A%5Ccyrn%20%5CT2A%5Ccyro%20-%5CT2A%5Ccyri%20-%5CT2A%5Ccyrs%20%5CT2A%5Ccyrv%20%5CT2A%5Ccyre%20%5CT2A%5Ccyrt%20%5CT2A%5Ccyrs%20%5CT2A%5Ccyrk%20%5CT2A%5Ccyro%20-%5CT2A%5Ccyro%20%5CT2A%5Ccyrb%20%5CT2A%5Ccyrr%20%5CT2A%5Ccyra%20%5CT2A%5Ccyrz%20%5CT2A%5Ccyro%20%5CT2A%5Ccyrv%20%5CT2A%5Ccyra%20%5CT2A%5Ccyrn%20%5CT2A%5Ccyri%20%5CT2A%5Ccyre
</code></pre>
<p>and that ist not the same. Can I set the encoding to utf8 for hyperref? Or how can i solve the problem?</p>
http://stackoverflow.com/questions/1852686/why-do-excel-and-ie8-give-an-error-when-viewing-xml-with-an-ein-it0Why do Excel and IE8 give an error when viewing XML with an ë in it?alwin2009-12-05T16:43:36Z2009-12-05T16:52:14Z
<p>Maybe this is an encoding issue? I can't imagine that you have to replace every non standard character.</p>
<p>Example XML:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<client>
<achternaam>Erriëns</achternaam>
</client>
</code></pre>
<p>With or without the first line doesn't matter.</p>
<p>Error in IE8:</p>
<pre><code>The XML page cannot be displayed
Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
--------------------------------------------------------------------------------
An invalid character was found in text content. Error processing resource 'file:///C:/Users/******/SO.xml'. Line ...
<achternaam>Erri
</code></pre>
<p>Excel doesn't like the ë either.</p>
http://stackoverflow.com/questions/1707792/problem-in-utf-8-encoding-php-mysql0Problem in utf-8 encoding PHP + MySQLperfectDay2009-11-10T13:00:08Z2009-12-05T12:29:45Z
<p>hi,i moved data from mysql 4 (they were originally set to latin2 encoding) to mysql 5 and set encoding to utf-8. It looks good in phpMyAdmin, utf-8 is ok. But there are question marks instead of some characters on website! website encoding is also set to utf8 so i dont understand where is the problem.
PHP and HTML files are also set to utf8.
I have no idea ...</p>
http://stackoverflow.com/questions/1849058/change-encoding-of-httpservletresponse0Change encoding of HttpServletResponsePablo Fernandez2009-12-04T19:14:22Z2009-12-05T02:46:58Z
<p>Hi,</p>
<p>I have an API that returns XML, it actually returns it using the default encoding (I believe it's UTF-8), but now requirements have changed and we need to return everything in UTF-16LE.</p>
<p>My question is: is there an easy way of doing this? I have access to the response just before the calls complete so I was wondering if I could do something like</p>
<pre><code>//This method does not exist
response.setCharacterEncoding("UTF-16LE");
</code></pre>
<p>Thanks a lot!</p>
<p><strong>UPDATE:
The method mentioned is the one to use. I was using an old version (2.3) of the servlet API that did not include it. Changing the version fixed it all.</strong></p>
http://stackoverflow.com/questions/1842564/moving-postgresql-database-fails-on-non-ascii-characters-with-value-too-long0Moving PostgreSQL database fails on non-ascii characters with 'value too long'Dave Aaron Smith2009-12-03T20:10:56Z2009-12-04T17:40:16Z
<pre><code># Dump my database to a tar file
pg_dump -f myDatabase.tar -F t -h myServer -U myUser -W -i myDatabase
# create a new database
createdb -h myServer -U myUser -T template0 myDatabaseCopy
# restore my database
pg_restore -d myDatabaseCopy -h myServer -U myUser myDatabase.tar
</code></pre>
<p>Then I get this error, and the import fails for an entire table.</p>
<p>psql:/home/me/myDatabase.tar:660266: ERROR: value too long for type character varying(100)
CONTEXT: COPY myTable, line 591, column myColumn: "A former member of the State Departmentâs âFuture of Iraqâ project and now at the Atlantic Cou..."</p>
<p>Those hat-a's are those annoying curly single and double quotes. It looks to me like they fit in the column at first, but somewhere in the export / import process they expand, and then no longer fit in the character varying(100) column.</p>
<p>I'm actually moving a live database on a server I have little permission for, so a sql only solution would be great. Is there a way to do something like</p>
<pre><code>UPDATE myTable SET myColumn = removeNonAscii(myColumn) WHERE hasNonAscii(myColumn)
</code></pre>
<p>EDIT:
habe got it. I changed </p>
<pre><code>createdb -h myServer -U myUser -T template0 myDatabaseCopy
</code></pre>
<p>to</p>
<pre><code>createdb -h myServer -U myUser -T template0 -E UTF8 myDatabaseCopy
</code></pre>
<p>and that did the trick.</p>
http://stackoverflow.com/questions/138948/how-to-get-utf-8-working-in-java-webapps23How to get UTF-8 working in java webapps?kosoant2008-09-26T11:48:09Z2009-12-04T13:52:33Z
<p>I need to get UTF-8 working in my Java webapp (servlets + JSP, no framework used) to support äöå etc. for regular Finnish text and Cyrillic alphabets like ЦжФ for special cases.</p>
<p>My setup is the following:</p>
<ul>
<li>Development encironment: Windows XP</li>
<li>Production encironment: Debian</li>
</ul>
<p>Database used: MySQL 5.x</p>
<p>Users mainly use Firefox2 but also Opera 9.x, FF3, IE7 and Google Chrome are used to access the site.</p>
<p>How to achieve this?</p>
http://stackoverflow.com/questions/1847066/does-myfaces-extensionsfilter-change-page-encoding0Does myfaces ExtensionsFilter change page encoding?marcos2009-12-04T13:50:43Z2009-12-04T13:50:43Z
<p>two days ago i started using tomahawk ExtensionsFilter components im my jsf application.
i noticed that all javascript alerts were not displaying special characters (ç, ã, ó ô), it displays things like #231 instead.
When i remove ExtensionsFilter from my web.xml file, javascript displays allright.
Anybody had this issue before?
thanks ins advance</p>
http://stackoverflow.com/questions/1840653/upsidedown-question-marks-question1Upsidedown question marks questionAlex2009-12-03T15:30:35Z2009-12-04T07:51:50Z
<p>We have a very strange problem in out application, all of a sudden we started noticing
upside down question marks being saved along with other text typed in to the fields on the screen. These upside down question marks were not originally entered by the users and it is unclear where they come from. We are using Oracle 10g with Asp.Net. </p>
<p>Here is an example of the issue: "140, 141) ¿ 16-Oct-07". If any one have seen this before and found a way to fix this please let me know how. </p>
http://stackoverflow.com/questions/1272437/problem-encoding-utf8-data-from-rails-app-to-mysql0Problem encoding UTF8 data from Rails app to MysqlPETER BROWN2009-08-13T14:47:52Z2009-12-03T16:27:39Z
<p>I'm having trouble saving UTF8 data in a form and having it correctly saved in mysql. In particular, via my ruby application I'm post a form that includes the following:</p>
<p><code>Gerhard Tröster</code></p>
<p>Which in my terminal I see is being updated in the database as:</p>
<pre><code>UPDATE `xxxx` SET
`updated_at` = '2009-08-13 14:22:33',
`description` = '<p><span style=\"font-size: 14px; line-height: normal; white-space: pre; \">Gerhard Tr?ster</span></p>'
WHERE `id` = 1228
</code></pre>
<p>However when I select from this table it says:</p>
<pre>
| description |
---------------
| Gerhard Tr |
</pre>
<p>Note that it's simply truncating everything AFTER the umlaut, even though the insert appears to have included it (or something like it). </p>
<p>My database.yml has encoding set to UTF8, I've included the appropriate META tags in my HTML as well. </p>
http://stackoverflow.com/questions/1837686/converting-utf-8or-other-8-bit-encoding-to-7-or-fewer-bits0Converting UTF-8(or other 8-bit encoding) to 7 or fewer bits.Bttc2009-12-03T04:43:05Z2009-12-03T11:35:44Z
<p>I wish to take a file encoded in UTF-8 that doesn't use more than 128 different characters, then move it to a 7-bit encoding to save the 1/8 of space. For example, if I have a 16 MB text file that only uses the first 128(ascii) characters, I would like to shave off the extra bit to reduce the file to 14MB.</p>
<p>How would I go about doing this?</p>
<p>There doesn't seem to be an existing free or proprietary program to do so, so I was thinking I might try and make a simple(if inefficient) one.</p>
<p>The basic idea I have is to make a function from the current hex/decimal/binary values used for each character to the 128 values I would have in the seven bit encoding, then scan through the file and write each modified value to a new file.</p>
<p>So if the file looked like(I'll use a decimal example because I try not to have to think in hex)</p>
<p>127 254 025 212 015 015 132...
It would become</p>
<p>001 002 003 004 005 005 006</p>
<p>If 127 mapped to 001, 254 mapped to 005, etc.</p>
<p>I'm not entirely sure on a couple things, though.</p>
<ol>
<li>Would this be enough to actually shorten the filesize? I have a bad feeling this would simply leave an extra 0 on the binary string--11011001 might get mapped to 01000001 rather than 1000001, and I won't actually save space.
If this would happen, how do I get rid of the zero?</li>
<li>How do I open the file to read/write in binary/decimal/hex rather than just text?
I've mostly worked with Python, but I can muddle through C if I must.</li>
</ol>
<p>Thank you.</p>
http://stackoverflow.com/questions/1837116/html-mails-by-google-no-html-code1HTML Mails by Google - No HTML CodeNirmal2009-12-03T01:33:56Z2009-12-03T01:36:39Z
<p>I received a promotional mail from Google AdWords. Because I liked the layout, I thought of giving a look at the HTML source of the mail. When I clicked 'Show original' from the mail options, I saw no HTML code, but a bunch of encoded text.</p>
<p>It was something like this:</p>
<pre><code>--===============0308376380==
MIME-Version: 1.0
Content-Type: text/html; charset="utf-8"
Content-Transfer-Encoding: base64
PG1ldGEgaHR0cC1lcXVpdj0iQ29udGVudC1UeXBlIiBjb250ZW50PSJ0ZXh0L2h0bWw7Y2hhcnNl
dD11dGYtOCIgLz4gDQo8ZGl2IHN0eWxlPSJjb2xvcjojMTExOyBmb250LXNpemU6MTIuOHB4OyBm
b250LWZhbWlseTpBcmlhbCxzYW5zLXNlcmlmOyBsaW5lLWhlaWdodDoxNDAlOyBwYWRkaW5nOjAg
MzBweDsiPiANCiANCgkJPGRpdiBzdHlsZT0iYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkICM5OTk7
IG92ZXJmbG93OiBoaWRkZW47IG1hcmdpbi10b3A6IDBweDsgbWFyZ2luLWJvdHRvbTogMi40ZW07
Ij4NCjxwIHN0eWxlPSJmb250LXNpemU6MTNweDsgZmxvYXQ6cmlnaHQ7IGNvbG9yOiM2NjY7IG1h
cmdpbjowOyBmb250LXdlaWdodDpib2xkOyI+RW1haWwgMiBvZiA2PC9wPg0KPGltZyBzcmM9Imh0
dHA6Ly93d3cuZ29vZ2xlLmNvbS9hZHdvcmRzL25ld3NsZXR0ZXJzL2ltYWdlcy9sb2dvX2dvb2ds
ZS5naWYiIGFsdD0iR29vZ2xlIiBzdHlsZT0ibWFyZ2luLWJvdHRvbToxcHg7IiAvPg0KPC9kaXY+
DQogDQoJPHAgc3R5bGU9Im1hcmdpbi1ib3R0b206MWVtOyI+SGVsbG8sPC9wPiANCgk8cCBzdHls
ZT0ibWFyZ2luLWJvdHRvbToxZW07Ij5LZXl3b3JkcyBhcmUgdGhlIHNlYXJjaCB0ZXJtcyAod29y
ZHMgb3IgcGhyYXNlcykgd2hpY2ggdHJpZ2dlciB5b3VyIGFkLCBhbmQgdGhleSBhcmUgY3JpdGlj
YWwgdG8gdGhlIHN1Y2Nlc3Mgb2YgeW91ciBBZFdvcmRzIGFkdmVydGlzaW5nLiBUaGlzIGVtYWls
IGV4cGxhaW5zIGhvdyB5b3UgY2FuIGNob29zZSB0aGUgbW9zdCBlZmZlY3RpdmUga2V5d29yZHMs
IGFzc2VzcyB5b3VyIGtleXdvcmQgcGVyZm9ybWFuY2UgYW5kIGhvdyB0aGlzIGFmZmVjdHMgdGhl
IGFtb3VudCB5b3UgcGF5LjwvcD4gDQogDQoJPGgyIHN0eWxlPSJjbGVhcjpib3RoOyBjb2xvcjoj
.........
............
....
.....................
--===============0308376380==--
</code></pre>
<p>What's happening here? How the HTML is encoded? Is there a way to decode these stuff? Thanks!</p>
http://stackoverflow.com/questions/1714629/mysql-latin1-utf8-convert-characters-to-their-multibyte-equivalents0Mysql: latin1-> utf8. Convert characters to their multibyte equivalents Dan2009-11-11T11:34:27Z2009-12-02T20:48:58Z
<p>There was a table in <strong>latin1</strong> and site in <strong>cp1252</strong>
I want to have table in <strong>utf8</strong> and site in <strong>utf-8</strong></p>
<p>I've done:</p>
<p>1) on web page: <code>Content-Type: text/html;charset=utf-8</code></p>
<p>2) Mysql: <code>ALTER TABLE XXX CONVERT TO CHARACTER SET utf8</code></p>
<p>_</p>
<p><strong>This SQL doesn't work as I want</strong> - it doesn't convert <strong>ä</strong> & <strong>ü</strong> characters in database to their multibyte equivalents</p>
<p>Please Help.
Tanks</p>
http://stackoverflow.com/questions/1754304/data-rate-and-frame-rate-property0Data rate and frame rate propertyAditya2009-11-18T07:56:10Z2009-12-02T19:40:35Z
<p>Hello everybody,</p>
<p>I convert a file using ffmpeg command in which audio and video bitrate are specified.</p>
<p>But when i play the converted file into totem player or vlc media player then audio and video bitrate in properties section are being displayed "N/A" whereas it must be same as these are specified in command.</p>
<pre><code>ffmpeg -i 'in.wmv' -s 1280x720 -b 256 -ar 44100 -ab 64k -ac 2 'output.mp4'
</code></pre>
<p>What is the exact issue? Please help me?</p>
http://stackoverflow.com/questions/1834342/chinese-character-in-url-problem-with-java1Chinese character in Url problem with JavaFrank2009-12-02T17:05:12Z2009-12-02T17:09:36Z
<p>I cut and pasted the following line in to my Firefox url field :</p>
<p><a href="http://www.baidu.com/s?wd=" rel="nofollow">http://www.baidu.com/s?wd=</a>你</p>
<p>This line was generated by my Java program.</p>
<p>The last Chinese char in the Firefox field sometimes became : %C4%E3 [ Correct ]</p>
<p>Other times it became this : %E4%BD%A0 [ Incorrect ]</p>
<p>I tried to cut and paste the url into IE.
In the url field it shows up still as "你", but the result page search field shows the char as "浣", could this be a unicode-8 or unicode-16 problem ? So I'm a bit confused. How do I get the correct code "%C4%E3" from the char "你" with my java program ?</p>
http://stackoverflow.com/questions/1832473/latin-1-to-utf-8-data-porting1latin-1 to utf-8 data portingrobinJ2009-12-02T11:57:37Z2009-12-02T15:51:14Z
<p>i have an old site whose database is in latin-1 encoding.
i have created a drupal site duplicate of old site
By default drupal database is in utf-8 encoding
now how do i port the database from latin-1 to utf-8 . i tried myself and i get unwanted charachters . how should i do it.</p>
http://stackoverflow.com/questions/1833190/can-i-change-the-default-encoding-of-my-mysql-server-from-latin-1-to-utf-80can i change the default encoding of my mysql server from latin-1 to utf-8 ?robinJ2009-12-02T14:21:31Z2009-12-02T14:26:18Z
<p>can i change the default encoding of my mysql server on my computer from latin-1 to utf-8 ?</p>
http://stackoverflow.com/questions/1379416/insert-utf8-data-into-a-ms-sql-server-20081Insert UTF8 data into a MS SQL-Server 2008aaginor2009-09-04T13:52:33Z2009-12-02T13:35:46Z
<p>Hi folks,</p>
<p>I have an issue with Encoding. I want to put data from a UTF-8-Encoded file into a MSSQL 2008 database. MSSQL only features UCS2 encoding, so I decided to explicitely convert the retrieved data.</p>
<pre><code>// connect to page file
_fsPage = new FileStream(mySettings.filePage, FileMode.Open, FileAccess.Read);
_streamPage = new StreamReader(_fsPage, System.Text.Encoding.UTF8);
</code></pre>
<p>Here's the conversion routine for the data:</p>
<pre><code>private string ConvertTitle(string title)
{
string utf8_String = Regex.Replace(Regex.Replace(title, @"\\.", _myEvaluator), @"(?<=[^\\])_", " ");
byte[] utf8_bytes = System.Text.Encoding.UTF8.GetBytes(utf8_String);
byte[] ucs2_bytes = System.Text.Encoding.Convert(System.Text.Encoding.UTF8, System.Text.Encoding.Unicode, utf8_bytes);
string ucs2_String = System.Text.Encoding.Unicode.GetString(ucs2_bytes);
return ucs2_String;
}
</code></pre>
<p>When stepping through the code for critical titles, variable watch shows the correct characters for both utf8 and ucs2 string. But in the database its - partially wrong. Some special chars are saved correctly, others not.</p>
<p>Wrong: ń becomes an n
Right: É or é are for example inserted correctly.</p>
<p>Any idea where the problem might be and how to solve it?</p>
<p>Thans in advance,
Frank</p>
http://stackoverflow.com/questions/1830530/is-it-correct-to-write-to-a-database-which-has-nlscharacterset-and-nlsnchar0Is it correct to write to a database which has 'NLS_CHARACTERSET' and 'NLS_NCHAR_CHARACTERSET' parameter values AL32UTF8 and UTF-8 with UTF-16 code page values?Manish2009-12-02T03:45:34Z2009-12-02T04:29:07Z
<p>The value of parameters 'NLS_CHARACTERSET' and 'NLS_NCHAR_CHARACTERSET' is UTF-8 for source database from where i am reading data, and AL32UTF8 and UTF-8 for target database where i am writing data. I am reading data from a text file which has english, european and asian characters, I am using UTF-16 code page to read from source flat file to preserve asian characters. I am loading source database with this flat file. Can it create a problem if i write UTF-16 code page values to UTF-8 code page, will it preserve the original character values ? I can see signs such as ¿¿¿¿ question mark upside down instead of ?</p>
http://stackoverflow.com/questions/1612233/how-to-parse-xml-file-that-is-encoded-with-another-encoder-different-from-utf-8-w0How to parse xml file that is encoded with another encoder different from utf-8 with using NSXMLParser in objective-C?crazywood2009-10-23T09:05:41Z2009-12-01T22:00:02Z
<p>Is there a way to parse xml file that is encoded with windows-1254 with using NSXMLParser? When i try, didStartElement method not called. </p>
http://stackoverflow.com/questions/1828651/-character-in-path-of-javascript-reference0# character in path of javascript referenceOdrade2009-12-01T20:24:15Z2009-12-01T21:05:40Z
<p>I have a web page that pulls in several javascript files in the HEAD section. The path to one of those files is generated dynamically, and I'm seeing an issue with some paths that include the # character. For example, the following path does not resolve correctly, and therefore the .js file does not load (even though I've verified that it exists):</p>
<pre><code><script src="\\remote_machine\share\test\this is #3 test\test.js"></script>
</code></pre>
<p>I'm wondering what the special meaning of '#3' is in this situation. I've tried replacing the # character with the equivalent html entity, like so:</p>
<pre><code><script src="\\remote_machine\share\test\this is &#35;3 test\test.js"></script>
</code></pre>
<p>but that does not resolve the issue. Further, I notice that the following path <em>does</em> resolve correctly (assuming the file exists):</p>
<pre><code><script src="\\remote_machine\share\test\this is # test\test.js"></script>
</code></pre>
<p>Could anyone explain the meaning of '#3' in the context of html as described? What's the recommended fix?</p>
<p>EDIT: I've tried replacing the '#' with "%23" in all three examples above. The first two remain broken, and the third no longer works. If I additionally replace all spaces with %20, I get the same result.</p>
http://stackoverflow.com/questions/1827905/what-is-tpkeys-in-vb-6-00what is tpkeys in vb 6.0sayed jalil hassan2009-12-01T18:18:46Z2009-12-01T18:25:54Z
<p>dim vkeys as tpkeys</p>
<p>above is a code but i dont understand what does it mean</p>
http://stackoverflow.com/questions/1826771/encoding-cp12522Encoding cp1252Arun2009-12-01T15:03:46Z2009-12-01T15:51:03Z
<p>When i try the following in java</p>
<p>System.out.println(System.getProperty("file.encoding"));</p>
<p>i get cp1252 as the encoding</p>
<p>Is there a way to know where this value is coming from ? (Like Environment variables or something)</p>
<p>I would like to print the value of encoding on command prompt using some command like systeminfo on windows xp.</p>
http://stackoverflow.com/questions/1826796/mssql-output-charset1mssql output charsetJirka Kopřiva2009-12-01T15:07:46Z2009-12-01T15:34:12Z
<p>Moist Greetz,</p>
<p>Is there any way to get <strong>MSSQL</strong> result in charset different from the native database encoding?</p>
<p>I mean somoething like "<em>set names</em>" which is used by <em>MySQL</em>.</p>
<p><em>thx</em></p>
http://stackoverflow.com/questions/1825165/data-porting-problem-in-mysql0data porting problem in mysqlsilverkid2009-12-01T09:56:18Z2009-12-01T10:10:11Z
<p>in porting data from one mysql database to other .. there have come some errors like appostrophe's have got converted into †.. in a field called story . why did this happen and what should i do now to correct the new database.</p>
<p>i have only the phpmyadmin access of the two databases</p>
http://stackoverflow.com/questions/1430004/c-net-2-0-my-encoding-works-on-windows-xp-and-vista-but-not-windows-70C# .Net 2.0 My Encoding works on Windows XP and Vista but not Windows 7Bob Sopel2009-09-15T22:42:37Z2009-12-01T04:00:07Z
<p>I have a .Net 2.0 app that uses UnicodeEncoding.Unicode when saving to a file when the data contains foreign characters this works fine on Windows XP and Vista but not on Windows 7, on Windows 7 I get a question marks ???? in the file (text file) instead of the correct characters. Any ideas where I should look?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1823205/cannot-show-the-downloaded-webpage-with-proper-encoding-using-php0Cannot show the downloaded webpage with proper encoding using PHPEhsan Baghaki2009-11-30T23:46:03Z2009-12-01T00:45:31Z
<p>I have to get the content of a persian page and show a part of that page to some users. The problem is after I filter the page content I cannot show the content with the proper encoding. The webpage is located at sena.ir and here is the screen shot of the original webpage part I want to show:</p>
<p><img src="http://img502.imageshack.us/img502/983/original.gif" alt="alt text"></p>
<p>And here is what I got:</p>
<p><img src="http://www.freeimagehosting.net/uploads/812cebe6b3.gif" alt="alt text"></p>
<p>Here is the function I use to get the page content:</p>
<pre><code>function getPage($url, $referer="", $timeout="", $header=""){
if(!isset($timeout))
$timeout=30;
$curl = curl_init();
if(strstr($referer,"://")){
curl_setopt ($curl, CURLOPT_REFERER, $referer);
}
$headers [] = 'Accept: image/gif, image/x-bitmap, image/jpeg, image/pjpeg';
$headers [] = 'Connection: Keep-Alive';
$headers [] = 'Content-type: application/x-www-form-urlencoded;charset=utf-8 '; // I Tried iso-..... as well but no chance
$user_agent = 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)';
$compression = "gzip";
curl_setopt ($curl, CURLOPT_HTTPHEADER, $headers );
curl_setopt ($curl, CURLOPT_HEADER, 0 );
curl_setopt ($curl, CURLOPT_USERAGENT, $user_agent );
curl_setopt ($curl, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt ($curl, CURLOPT_FOLLOWLOCATION, 1 );
curl_setopt ($curl, CURLOPT_POST, 0 );
curl_setopt ($curl, CURLOPT_ENCODING, $compression );
curl_setopt ($curl, CURLOPT_TIMEOUT, 300 );
curl_setopt ($curl, CURLOPT_SSL_VERIFYHOST, 0 );
curl_setopt ($curl, CURLOPT_SSL_VERIFYPEER, 0 );
curl_setopt ($curl, CURLOPT_URL, $url);
$html = curl_exec ($curl);
curl_close ($curl);
return $html;
}
$content = getPage("http://sena.ir/");
$p1 = strpos($content,'<TABLE cellSpacing="3" cellPadding="3" width="100%" border="0">');
$p2 = strpos($content,"</TABLE>",$p1);
$content = substr($content, $p1, $p2-$p1);
echo $content;
</code></pre>
http://stackoverflow.com/questions/321370/convert-hex-string-to-byte-array0Convert hex string to byte arrayBlankman2008-11-26T16:45:53Z2009-11-30T20:54:23Z
<p>Hi,</p>
<p>Can we converting a hex string to a byte array using a built-in function in C# or I have to make a custom method for this?</p>
http://stackoverflow.com/questions/1820807/binary-encoding-for-low-bandwidth-connections1Binary encoding for low bandwidth connections?Jorge Córdoba2009-11-30T16:21:58Z2009-11-30T17:29:55Z
<p>In my application I have a simple XML formatted file containing structured data. Each data entry has a data type and a value. Something like</p>
<pre><code><entry>
<field type="integer">5265</field>
<field type="float">34.23</field>
<field type="string">Jorge</field>
</entry>
</code></pre>
<p>Now, this formatting allow us to have the data in a human readable form in order to check for various values, as well as performing transformation and reading of the file easily for interoperability.</p>
<p>The problem is we have a very low bandwidth connection (about 1000 bps, yeah, thats bits per second) so XML is no exactly the best format to transmit the data. I'm looking for ways to encode the xml file into a binary equivalent that its more suitable for transmission.</p>
<p><strong>Do you know of any good tutorial on the matter?</strong></p>
<p>Additionally we compress the data before sending (simple GZIP) so I'm a little concerned with losing compression ratio if I go binary. <strong>Would the size be affected (when compressing) so badly that it would be a bad idea to try to optimize it in the first place?</strong></p>
<p>Note: This is not premature optimization, it's a requisite. 1000 bps is a really low bandwidth so every byte counts.</p>
<p>Note2: Application is written in c# but any tutorial will do.</p>
http://stackoverflow.com/questions/1813645/displaying-symbol-in-silverlight3Displaying ® symbol in Silverlight.pencilslate2009-11-28T20:11:06Z2009-11-30T08:57:28Z
<p>Folks!</p>
<p>I am trying to display ® and superscript TM symbols in my silverlight app. I want to save the text containing the symbols in a resx file.</p>
<p>Things i have tried: </p>
<blockquote>
<ul>
<li><p>Copy paste the ® symbol from any document to resx file. ® symbol gets
displayed in the resx file. But, when
running the silverlight app,
xamlparseexception is thrown.</p></li>
<li><p>Use unicode text &#174 instead of ® symbol in the resx file. Same
xamlparseexception thrown.</p></li>
</ul>
</blockquote>
<p>My resx file encoding is utf-8.</p>
<p>Appreciate your thoughts!</p>
<p>EDITED:<br>
Incorrectly mentioned @ instead of ®. </p>
<p>Redbox in the snapshot is how the symbol gets displayed in Silverlight. Bluebox is how it needs to be displayed.<br>
<img src="http://i818.photobucket.com/albums/zz109/pencilslate/snapshot.jpg" alt="alt text"></p>
<p>EDIT 2 and SOLUTION:
The way the symbols are displayed are dependant on the font used. Also, displaying superscripts in Silverlight is a bit tricky. But, the simplest solution i found was to create the superscript text in Windows character map tool and copy paste it your app resource file.</p>