active questions tagged unicode - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T20:12:11Zhttp://stackoverflow.com/feeds/tag/unicodehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1821204/how-to-get-unicode-month-name-in-python0How to get unicode month name in Python?Rickard Lindberg2009-11-30T17:31:20Z2009-11-30T18:06:29Z
<p>I am trying to get a unicode version of <code>calendar.month_abbr[6]</code>. If I don't specify an encoding for the locale, I don't know how to convert the string to unicode. The example code below shows my problem:</p>
<pre><code>>>> import locale
>>> import calendar
>>> locale.setlocale(locale.LC_ALL, ("ru_RU"))
'ru_RU'
>>> print repr(calendar.month_abbr[6])
'\xb8\xee\xdd'
>>> print repr(calendar.month_abbr[6].decode("utf8"))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.5/encodings/utf_8.py", line 16, in decode
return codecs.utf_8_decode(input, errors, True)
UnicodeDecodeError: 'utf8' codec can't decode byte 0xb8 in position 0: unexpected code byte
>>> locale.setlocale(locale.LC_ALL, ("ru_RU", "utf8"))
'ru_RU.UTF8'
>>> print repr(calendar.month_abbr[6])
'\xd0\x98\xd1\x8e\xd0\xbd'
>>> print repr(calendar.month_abbr[6].decode("utf8"))
u'\u0418\u044e\u043d'
</code></pre>
<p>Any ideas how to solve this? The solution doesn't have to look like this. Any solution that gives me the abbreviated month name in unicode is fine.</p>
http://stackoverflow.com/questions/1818291/is-there-any-tools-utility-to-convert-string-to-ansistring-in-pascal-source-f2Is there any tools/utility to convert "string" to "AnsiString" in pascal source files?Chau Chee Yang2009-11-30T07:21:24Z2009-11-30T17:27:55Z
<p>Delphi 2009 and above support unicode. I have few legacy pascal source files that I wish to make it compile in Delphi 2009/2010 as well as Delphi 2007 and below.</p>
<p>A quick and safe way is replace</p>
<ul>
<li>String to AnsiString</li>
<li>PChar to PAnsiChar</li>
<li>Char to AnsiChar</li>
</ul>
<p>Is there any utility available that able to parse .pas file and make such replacement?</p>
http://stackoverflow.com/questions/1809531/truncating-unicode-so-it-fits-a-maximum-size-when-encoded-for-wire-transfer3Truncating unicode so it fits a maximum size when encoded for wire transferjhs2009-11-27T16:04:58Z2009-11-30T16:45:24Z
<p>Given a Unicode string and these requirements:</p>
<ul>
<li>The string be encoded into some byte-sequence format (e.g. UTF-8 or JSON unicode escape)</li>
<li>The encoded string has a maximum length</li>
</ul>
<p>For example, the iPhone push service requires JSON encoding with a maximum total packet size of 256 bytes.</p>
<p><strong>What is the best way to truncate the string so that it re-encodes to valid Unicode and that it displays reasonably correctly?</strong></p>
<p>(Human language comprehension is not necessary—the truncated version can look odd e.g. for an orphaned combining character or a Thai vowel, just as long as the software doesn't crash when handling the data.)</p>
<p>See Also:</p>
<ul>
<li>Related Java question: <a href="http://stackoverflow.com/questions/119328/">How do I truncate a java string to fit in a given number of bytes, once UTF-8 encoded?</a></li>
<li>Related Javascript question: <a href="http://stackoverflow.com/questions/1515884/">Using JavaScript to truncate text to a certain size</a></li>
</ul>
http://stackoverflow.com/questions/1818976/urlencodeunicode-and-browser-navigation-errors1UrlEncodeUnicode and browser navigation errorsskarmats2009-11-30T10:22:19Z2009-11-30T10:31:23Z
<p>I want to redirect a request to some URL that may or may not contain non-ascii characters (e.g. german umlauts).</p>
<p>Doing this with the relevant part of the URL:</p>
<pre><code>var url = HttpUtility.UrlEncodeUnicode("öäü.pdf"); // -> "%u00f6%u00e4%u00fc.pdf"
</code></pre>
<p>and then issuing the redirect:</p>
<pre><code>Response.Redirect(url, ...);
</code></pre>
<p>will not produce the desired behaviour. It appears, the browser (IE, Opera as far as I have tested) doesn't honor this command when the URL to redirect to is Unicode-encoded. Ordinary UrlEncode'd paths work fine.</p>
<p>I have tried setting this in the Web.Config:</p>
<pre><code><configuration>
<system.web>
<globalization
requestEncoding="utf-8"
responseEncoding="utf-8"
/>
</system.web>
</configuration>
</code></pre>
<p>That didn't change a thing.</p>
<p>Is there anything I can do, to get this to work?</p>
http://stackoverflow.com/questions/1817695/python-how-to-get-stringio-writelines-to-accept-unicode-string2Python: How to get StringIO.writelines to accept unicode string?rutherford2009-11-30T03:23:28Z2009-11-30T10:30:28Z
<p>I'm getting a </p>
<pre><code>UnicodeEncodeError: 'ascii' codec can't encode character u'\xa3' in position 34: ordinal not in range(128)
</code></pre>
<p>on a string stored in 'a.desc' below as it contains the '£' character. It's stored in the underlying Google App Engine datastore as a unicode string so that's fine. The cStringIO.StringIO.writelines function is trying seemingly trying to encode it in ascii format:</p>
<pre><code>result.writelines(['blahblah',a.desc,'blahblahblah'])
</code></pre>
<p>How do I instruct it to treat the encoding as unicode if that's the correct phrasing?</p>
<p>app engine runs on python 2.5</p>
http://stackoverflow.com/questions/1818263/python-unicode-how-to-test-against-unicode-string0Python unicode: how to test against unicode stringjrara2009-11-30T07:07:54Z2009-11-30T10:29:25Z
<p>I have a script like this:</p>
<pre><code>#!/Python26/
# -*- coding: utf-8 -*-
import sys
import xlrd
import xlwt
argset = set(sys.argv[1:])
#----------- import ----------------
wb = xlrd.open_workbook("excelfile.xls")
#----------- script ----------------
#Get the first sheet either by name
sh = wb.sheet_by_name(u'Data')
hlo = []
for i in range(len(sh.col_values(8))):
if sh.cell(i, 1).value in argset:
if sh.cell(i, 8).value == '':
continue
hlo.append(sh.cell(i, 8).value)
</code></pre>
<p>excelfile.xls contains unicode strings and I want to test against these strings from command line:</p>
<pre><code>C:\>python pythonscript.py päätyö
pythonscript.py:34: UnicodeWarning: Unicode equal comparison failed to convert both arguments to
icode - interpreting them as being unequal
if sh.cell(i, 1).value in argset:
</code></pre>
<p>How should I modify my code for Unicode?</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>
http://stackoverflow.com/questions/1818366/how-to-use-trace-with-ascii-under-unicode-mfc-environment1How to use TRACE with ascii under unicode MFC environment?Victor Lin2009-11-30T07:42:06Z2009-11-30T08:53:43Z
<p>I am developing a MFC program under windows CE. It is unicode by default. I can use TRACE to print some message like this</p>
<pre><code>TRACE(TEXT("Hey! we got a problem!\n"));
</code></pre>
<p>It works fine if everything is unicode. But however, I got some ascii string to print. For example:</p>
<pre><code>// open the serial port
m_Context = CreateFile(TEXT("COM1:"), ...);
int rc = ReadFile(m_Context, buffer, 1, cBytes, NULL);
// Oops!! We got a problem, because we can't print a non-unicode string
TRACE(TEXT("Read data: %s\n"), buffer);
</code></pre>
<p>I read string through com1 from a GPS module. It send text like this "$GPSGGA,1,2,3,4". They are all encoded with ASCII. I want to print them out with TRACE, how can I do?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1818025/reading-characters-outside-ascii0Reading characters outside ASCII.Masse2009-11-30T05:48:13Z2009-11-30T06:15:24Z
<p>A friend of mine showed me a situation where reading characters produced unexpected behaviour. Reading the character '¤' caused his program to crash. I was able to conclude that '¤' is 164 decimal so it's over the ASCII range.</p>
<p>We noticed the behaviour on '¤' but any character >127 seems to show the problem. The question is how would we reliably read such characters char by char?</p>
<pre><code>int main(int argc, const char *argv[])
{
char input;
do
{
cin >> input;
cout << input;
cout << " " << setbase(10) << (int)input;
cout << " 0x" << setbase(16) << (int)input;
cout << endl;
} while(input);
return 0;
}
masse@libre:temp/2009-11-30 $ ./a.out
¤
 -62 0xffffffc2
¤ -92 0xffffffa4
</code></pre>
http://stackoverflow.com/questions/1815427/how-to-pass-an-unicode-char-argument-to-imagemagick0How to pass an unicode char argument to ImageMagick?jack2009-11-29T12:44:32Z2009-11-30T02:59:16Z
<p>Suppose the char of "▣" is in somefont.ttf's glyph table. </p>
<pre><code>char = unichr(9635)
subprocess.call(['convert', '-font', 'somefont.ttf', '-size', '50x50', '-label:%s' % char, 'output.png'])
subprocess.call(['convert', '-font', 'somefont.ttf', '-size', '50x50', ('-label:%s' % char).encode('utf-8'), 'output.png'])
</code></pre>
<p>Both create an blank image with no char of "▣" on it. Is above code correct? Or the problem is on ImageMagick side which doesn't capture label in certain ranges?</p>
<p>The reason for using ImageMagick to draw text is it's more flexible than PIL to fix and align text to certain image size. </p>
<p><strong>EDIT:</strong></p>
<p>According to yuku's suggestion, I tried the following methods:</p>
<pre><code>root@host:~@convert -font somefont.ttf -size 50x65 label:▣ output.png
root@host:~@convert -font somefont.ttf -size 50x65 label:'▣' output.png
</code></pre>
<p>Both outputs a question mark but not the correct character.</p>
http://stackoverflow.com/questions/1817379/how-to-detect-if-a-unicode-character-maps-to-the-missing-symbol-square2How to detect if a Unicode character maps to the missing-symbol square?wm8s2009-11-30T00:57:36Z2009-11-30T00:57:36Z
<p>Is there a way to detect whether a Unicode character is present in a font on the iPhone, i.e., to detect whether the character will map to a printable glyph or instead to the square "missing character" symbol?</p>
<p>For example, if I want to generate a random Wingding character with this snippet:</p>
<pre><code>NSString *s = [NSString stringWithFormat:@"%C", (0x2700 + (arc4random() % 0x0100))];
</code></pre>
<p>is there a way to tell if the generated string will render as the little square, or a real glyph when I draw it with this:</p>
<pre><code>[s drawAtPoint:x withFont:[UIFont systemFontOfSize:30]];
</code></pre>
<p>Thanks!</p>
<p>...R</p>
http://stackoverflow.com/questions/1794637/url-escaping-chinese-japanese-unicode-characters-for-internet-explorer3URL Escaping Chinese/Japanese Unicode Characters for Internet ExplorerBear2009-11-25T04:29:49Z2009-11-29T06:51:15Z
<p>I'm trying to URL-escape (percent-encode) non-ascii characters in several URLs I'm dealing with. I'm working with a flash application that loads resources like images and sound clips from these URLs. Since the filenames can contain non-ascii characters, like so:
<code>日本語.jpg</code>
I escape them by utf-8 encoding the characters, and then percent-escaping the unicode bytes, to get the following:</p>
<p><code>%E6%97%A5%E6%9C%AC%E8%AA%9E.mp3</code></p>
<p>These filenames work fine when I run the app in any browser other than Internet Explorer - I've tried Firefox, Safari and Chrome. But when I launch the app in IE (tried both 6 and 8) and it tries to load the sound clip, I get:
<code>Error #2044: Unhandled ioError</code>, and the URL has been corrupted to something like:</p>
<p><code>æ¥æ¬èª.mp3</code></p>
<p>Any thoughts on how to fix this? This is just test-driving the flash app with local filesystem URLs.
I've also noticed that Internet explorer isn't able to locate a file such as:
<code>file:///C:/%E6%97%A5%E6%9C%AC%E8%AA%9E.jpg</code>, though Chrome / Firefox will decode it and load just fine for a file with the path</p>
<p><code>C:\日本語.jpg</code></p>
http://stackoverflow.com/questions/304564/is-there-a-good-k-kode-editor-for-klingon7Is there a good K++ Kode editor for Klingon?Robert Gould2008-11-20T07:30:53Z2009-11-28T15:50:19Z
<p>Ok, I know this is a strange question, but there is a "standard" (fan-wise at least) Unicode support for the Klingon alphabet, and since code can be written in Unicode with no problem, that means it is possible to write Kode with Klingon tokens( vars, function names, etc...).</p>
<p>For the record I've written C++ in Japanese and it works, so K++ in Klingon should work too. But I don't know of any text editor with support for Klingon. Any suggestions?</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/1810642/richtextbox-use-to-retrieve-text-property-in-c1RichTextBox use to retrieve Text property in C++val2009-11-27T21:10:53Z2009-11-27T21:37:34Z
<p>I am using a hidden RichTextBox to retrieve Text property from a RichEditCtrl.
<strong>rtb->Text</strong>; returns the text portion of either <strong>English</strong> of <strong>national</strong> languages – just great!</p>
<p>But I need this text in \u12232? \u32232? instead of national characters and symbols. to work with my db and RichEditCtrl. Any idea how to get from “<strong>пассажирским поездом Невский</strong>” to “<strong>\u12415?\u12395?\u23554?\u20219?\u30456?\u35527?\u21729?</strong> (where each national character is represented as “\u23232?”</p>
<p>If you have, that would be great.
I am using visual studio 2008 C++ combination of MFC and managed code.</p>
<p>Cheers and have a wonderful weekend</p>
http://stackoverflow.com/questions/1810343/is-a-wide-character-string-literal-starting-with-l-like-lhello-world-guaranteed0Is a wide character string literal starting with L like L"Hello World" guaranteed to be encoded in Unicode?Peter2009-11-27T19:34:03Z2009-11-27T21:19:04Z
<p>I've recently tried to get the full picture about what steps to take to create plattform independent C++ applikations that support unicode. A thing that is confusing to me is that most howtos and stuff equalize the character encoding (i.e. ANSI or Unicode) and the character datatype (char or wchar_t). As far as I've learned so far these are different things and there may exist a character sequence encodeded in Unicode but represented by std::string as well as a character sequence encoded in ANSI but represented as std::wstring, Right? </p>
<p>So the question that arises to me is whether the C++ standard gives any quarantee about the encoding of string literals starting with <code>L</code> or does it just say it's of type wchar_t with compiler implementation specific character encoding? </p>
<p>If there is no such quaranty does that mean I need some sort of external resource system to provide non ASCII string literals for my applikation in a platform independent way?
What is the prefered way for this? Resource system or proper encoding of source files plus proper compiler options?</p>
http://stackoverflow.com/questions/1807063/extract-files-with-invalid-characters-in-filename-with-python0Extract files with invalid characters in filename with Pythonjack2009-11-27T06:15:06Z2009-11-27T17:42:13Z
<p>I use python's zipfile module to extract a .zip archive (Let's take this file at <a href="http://img.dafont.com/dl/?f=akvaleir" rel="nofollow">http://img.dafont.com/dl/?f=akvaleir</a> for example.)</p>
<pre><code>f = zipfile.ZipFile('akvaleir.zip', 'r')
for fileinfo in f.infolist():
print fileinfo.filename
f.extract(fileinfo, '.')
</code></pre>
<p>Its output:</p>
<pre><code>Akval�ir_Normal_v2007.ttf
Akval�ir, La police - The Font - Fr - En.pdf
</code></pre>
<p>Both files are unaccessable after extraction because there are invalid encoded characters in their filenames. The problem is zipfile module doesn't have an option to specify output filenames.</p>
<p>However, "unzip akvaleir.zip" escapes the filename well:</p>
<pre><code>root@host:~# unzip akvaleir.zip
Archive: akvaleir.zip
inflating: AkvalВir_Normal_v2007.ttf
inflating: AkvalВir, La police - The Font - Fr - En.pdf
</code></pre>
<p>I tried capturing output of "unzip -l akvaleir.zip" in my python program and these two filenames are:</p>
<pre><code>Akval\xd0\x92ir_Normal_v2007.ttf
Akval\xd0\x92ir, La police - The Font - Fr - En.pdf
</code></pre>
<p>How can I get the correct filename like what unzip command does without capturing output of "unzip -l akvaleir.zip"?</p>
http://stackoverflow.com/questions/1808567/what-is-the-default-content-type-charset0What is the default content-type/charset?alex2009-11-27T12:44:51Z2009-11-27T14:41:54Z
<p>According to this answer: <a href="http://stackoverflow.com/questions/1020892/python-urllib2-read-to-unicode">http://stackoverflow.com/questions/1020892/python-urllib2-read-to-unicode</a></p>
<p>I have to get the content-type in order to change to unicode.
However, some websites don't have a "charset". </p>
<p>For example, the ['content-type'] for this page is "text/html". <a href="http://bit.ly/6IcCtf/" rel="nofollow">http://bit.ly/6IcCtf/</a>
I can't convert it to unicode. </p>
<pre><code>encoding=urlResponse.headers['content-type'].split('charset=')[-1]
htmlSource = unicode(htmlSource, encoding)
TypeError: 'int' object is not callable
</code></pre>
<p>Is there a default "encoding" (English, of course)...so that if nothing is found, I can just use that? </p>
http://stackoverflow.com/questions/1808612/i-just-want-to-download-this-url-but-it-is-giving-me-an-error-unicode-py1I just want to download this URL...but it is giving me an error! ...unicode.. (Python)alex2009-11-27T12:54:28Z2009-11-27T13:10:08Z
<pre><code>theurl = 'http://bit.ly/6IcCtf/'
urlReq = urllib2.Request(theurl)
urlReq.add_header('User-Agent',random.choice(agents))
urlResponse = urllib2.urlopen(urlReq)
htmlSource = urlResponse.read()
if unicode == 1:
#print urlResponse.headers['content-type']
#encoding=urlResponse.headers['content-type'].split('charset=')[-1]
#htmlSource = unicode(htmlSource, encoding)
htmlSource = htmlSource.encode('utf8')
return htmlSource
</code></pre>
<p><strong>Please take a look at the unicode portion. I've tried those two options...but doesn't work.</strong></p>
<pre><code>htmlSource = htmlSource.encode('utf8')
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe7 in position 370747: ordinal not in range(128)
</code></pre>
<p>and also this when I try the longer method of encoding...</p>
<pre><code>_mysql_exceptions.Warning: Incorrect string value: '\xE7\xB9\x81\xE9\xAB\x94...' for column 'html' at row 1
</code></pre>
http://stackoverflow.com/questions/1800318/php6-and-its-future-how-to-best-handle-unicode-in-a-future-proof-way7PHP6 and its future: How to best handle Unicode in a future proof way?Marius Burz2009-11-25T22:18:09Z2009-11-27T10:38:07Z
<p>A week ago there was an interesting post on the PHP-Internals list:<br>
<a href="http://marc.info/?l=php-internals&m=125842046913842&w=2" rel="nofollow">http://marc.info/?l=php-internals&m=125842046913842&w=2</a></p>
<blockquote>
<p>I've been thinking for a while what we
should do about PHP6 and its future,
because right now it seems like there
isn't much future in it.</p>
</blockquote>
<p>I started getting worried about the future of PHP6 quite a while before that. Except for some publishers in need of cash who brought us some PHP6 books, the past couple of years the entire PHP6 scene was rather quiet. Some of the top features of PHP6 were backported to PHP 5.3, but the main feature, Unicode support was not, and its questionable whether it ever will be. I feel this is really not a feature that should be missing from any modern programming language.</p>
<p>How are you dealing with the PHP Unicode situation now, and how are you planning on dealing with it in the future? </p>
<p>What's the most efficient and future proof way to handle Unicode strings nowadays in PHP 5.3?</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/1805911/how-to-get-asian-japanese-text-from-richtextbox-into-a-cstring0How to get asian (Japanese) text from RichTextBox into a CString val2009-11-26T22:20:22Z2009-11-26T22:20:22Z
<p>Help, stuck wiht getting unicode text from RichTextBox in managed C++.
I am trying to read rtb->Text into a CString object expecting to see something like: <strong>"\u33655?\u26538?\u23454?\u24377?\u30340</strong>?"
The rtb->Text shows a proper Japanese characters but I cannot write them into a DB. So I need a wchar representation of the Japanese characters simillar as CRichEditCtrl shows.</p>
<p>When I do something straight forward like:
CString str(rtb->Text);
I get "<strong>???????</strong>" for each Asian character.
Thanks,
Lena</p>
http://stackoverflow.com/questions/1797777/should-i-support-unicode-in-passwords7Should I support Unicode in passwords?KL902009-11-25T15:39:36Z2009-11-26T20:23:00Z
<p>I would like to allow my users to use Unicode for their passwords.</p>
<p>However I see a lot of sites don't support that (e.g. Gmail, Hotmail).</p>
<p>So I'm wondering if there's some technical or usability issue that I'm overlooking.</p>
<p>I'm thinking if anything it must be a usability issue since by default .NET accepts Unciode and if Hotmail--er, the new Live mail--is built on that, I don't see why they would restrict it.</p>
<p>Has anyone encountered similar issues?</p>
http://stackoverflow.com/questions/81448/difference-between-varchar211-byte-and-varchar211-char3Difference between VARCHAR2(11 BYTE) and VARCHAR2(11 CHAR)Guido García2008-09-17T09:27:30Z2009-11-26T14:09:23Z
<p>In Oracle, what is the difference between :</p>
<pre><code>CREATE TABLE CLIENT
(
NAME VARCHAR2(11 BYTE),
ID_CLIENT NUMBER
)
</code></pre>
<p>and</p>
<pre><code>CREATE TABLE CLIENT
(
NAME VARCHAR2(11 CHAR), -- or even VARCHAR2(11)
ID_CLIENT NUMBER
)
</code></pre>
<p>Thank you.</p>
http://stackoverflow.com/questions/1802601/jasperreport-using-ireport-not-support-unicode-character-while-export-to-pdf-form0JasperReport using iReport not support unicode character while export to pdf format Yog2009-11-26T09:35:12Z2009-11-26T09:35:12Z
<p>Hello
I am using iRport design tool to create the report in my project. I have created .jrxml and .jasper file, it works fine in the iReport means it supports for the Unicode character and displaying all unicode characters but if I integrated this .jasper file in my java class and exports the report into the pdf format by using itext jar file. Then the program runs well and create the report in pdf format but not showing the unicode characters in the generated report file. So please help me in this case sothat I will able to view unicode characters in the generated report file. Thanks in advance. </p>
http://stackoverflow.com/questions/1802003/parsing-peculiar-newlines1Parsing Peculiar Newlinesmrduclaw2009-11-26T07:07:23Z2009-11-26T07:46:56Z
<p>I'm sure this is something very simple that I'm screwing up, but here goes: </p>
<p>I'm trying to parse a log file that is generally formatted in UNICODE (and I'll freely admit that I don't generally know much about UNICODE, but the first two bytes of the file are 0xFFFE, and there's a zero between every other character). The peculiar part is that this file appears to end lines with the byte sequence 0x0D000D0A, that is, \r\0\r\n, and that's apparently confusing my <code>TextReader</code> from reading it.</p>
<p>That is, every other line I print is filled with:</p>
<pre><code>?????????????????? ???????????? ? ????????? ? ????????????? ? ?????????????? ???? ??? ????? ???????????????????? ??? ???????????? ????????????????? ?????????????????????? ???????????????????? ?????? ????????????????????? ????????????? ?????
</code></pre>
<p>What is the recommended way for me to go about parsing this using C#? Or rather, what am I doing wrong?</p>
<p>Thanks!</p>
<p><strong>Update:</strong> Sorry, I should have probably included the code I was using in my initial posting. Here it is:</p>
<pre><code>FileStream fsa = File.Open(@"C:\InboxLOG.txt", FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
TextReader sr = new StreamReader(fsa, Encoding.Unicode, true);
string line = "";
while ((line = sr.ReadLine()) != null)
{
Console.WriteLine(line);
}
</code></pre>
<p>Using <code>StreamReader(fsa)</code> produces the same results.</p>
http://stackoverflow.com/questions/1780925/python-unicode-character-in-str1Python unicode character in __str__sharvey2009-11-23T03:11:28Z2009-11-26T02:27:40Z
<p>I'm trying to print cards using their suit unicode character and their values. I tried doing to following:</p>
<pre><code>def __str__(self):
return u'\u2660'.encode('utf-8')
</code></pre>
<p>like suggested in another <a href="http://stackoverflow.com/questions/1307014/python-str-versus-unicode">thread</a>, but I keep getting errors saying <code>UnicodeEncodeError: ascii, ♠, 0, 1, ordinal not in range(128)</code>. What can I do to get those suit character to show up when I print a list of cards?</p>
http://stackoverflow.com/questions/368805/python-unicodedecodeerror-am-i-misunderstanding-encode5Python UnicodeDecodeError - Am I misunderstanding encode?Greg2008-12-15T15:57:24Z2009-11-25T23:22:55Z
<p>Any thoughts on why this isn't working? I really thought 'ignore' would do the right thing.</p>
<pre><code>>>> 'add \x93Monitoring\x93 to list '.encode('latin-1','ignore')
Traceback (most recent call last):
File "<interactive input>", line 1, in ?
UnicodeDecodeError: 'ascii' codec can't decode byte 0x93 in position 4: ordinal not in range(128)
</code></pre>
http://stackoverflow.com/questions/1545625/java-cant-open-a-file-with-surrogate-unicode-values-in-the-filename6Java Can't Open a File with Surrogate Unicode Values in the Filename?Bear2009-10-09T19:21:38Z2009-11-25T21:05:17Z
<p>I'm dealing with code that does various IO operations with files, and I want to make it able to deal with international filenames. I'm working on a Mac with Java 1.5, and if a filename contains Unicode characters that require surrogates, the JVM can't seem to locate the file. For example, my test file is:</p>
<p><code>"草鷗外.gif"</code> which gets broken into the Java characters <code>\u8349\uD85B\uDFF6\u9DD7\u5916.gif</code></p>
<p>If I create a file from this filename, I can't open it because I get a FileNotFound exception. Even using this on the folder containing the file will fail:</p>
<pre><code>File[] files = folder.listFiles();
for (File file : files) {
if (!file.exists()) {
System.out.println("Failed to find File"); //Fails on the surrogate filename
}
}
</code></pre>
<p>Most of the code I am actually dealing with are of the form:</p>
<pre><code>FileInputStream instream = new FileInputStream(new File("草鷗外.gif"));
// operations follow
</code></pre>
<p>Is there some way I can address this problem, either escaping the filenames or opening files differently?</p>
http://stackoverflow.com/questions/1781538/is-there-a-way-to-set-search-settings-for-ms-office-2003-for-non-english-charec1Is there a way to set search settings for ms office (2003) for non English charectarsTzury Bar Yochay2009-11-23T07:11:22Z2009-11-25T19:34:01Z
<p>Say there is a spreadsheet or table in MS access which contains non English characters (diacritics) such as <code>à, á, â, ã, ä, å, æ, ç, è, é, ê, ë</code></p>
<p>Since this system is used by English speakers, the end-user, when searching for values cannot guess whether or not certain words or names were entered in the English version or in the original version. </p>
<p>That is, <code>días</code> might be originally entered into the databse as <code>días</code> or <code>dias</code>. <code>coñac</code> might be entered as <code>coñac</code> or <code>conac</code>. In fact sometimes data is entered this way and sometimes the other way.</p>
<p>The question is whether there is a way to set this search options, so built-in office search mechanism (Ctrl+f) would find <code>días</code> when <code>dias</code> is supplied.</p>
<p>If there is not, I would like to hear what would be your approach to solve this problem.</p>