2
votes
3answers
229 views
Displaying a unicode text in C#
My App displays English, Japanese and Chinese characters on a TextBox and a LinkLabel.
Currently, I check if there are unicode characters and change the font to MS Mincho or else l …
1
vote
2answers
317 views
How to open file in PHP that has unicode characters in its name?
For example I have a filename like this - проба.xml and I am unable to open it from PHP script.
If I setup php script to be in utf-8 than all the text in script is utf-8 thus when …
1
vote
3answers
207 views
Reading “raw” Unicode-strings in Python
Dear all,
I am quite new to Python so my question might be silly, but even though reading through a lot of threads I didn't find an answer to my question.
I have a mixed sourc …
3
votes
3answers
430 views
Weird SQL Behavior, why is this query returning nothing?
Assume there is a table named "myTable" with three columns:
{**ID**(PK, int, not null),
**X**(PK, int, not null),
**Name**(nvarchar(256), not null)}.
Let {4, 1, аккаунт} be …
0
votes
1answer
330 views
Escaped unicode to unicode character in Cocoa
I get from a NSURLConnection a NSData object which I convert with
[[NSMutableString alloc] initWithData:[self urlData] encoding:NSUTF8StringEncoding]
to a NSMutableString. After …
0
votes
2answers
49 views
Hash method and UnicodeEncodeError
In Python 2.5, I have the following hash function:
def __hash__(self):
return hash(str(self))
It works well for my needs, but now I started to get the following error message. …
6
votes
8answers
1k views
Why the Excess Memory for Strings in Delphi?
I'm reading in a large text file with 1.4 million lines that is 24 MB in size (average 17 characters a line).
I'm using Delphi 2009 and the file is ANSI but gets converted to Unic …
1
vote
1answer
704 views
conversion of unicode string in python
I need to convert unicode strings in Python to other types such as unsigned and signed int 8 bits,unsigned and signed int 16 bits,unsigned and signed int 32 bits,unsigned and signe …
0
votes
2answers
299 views
UNICODE_STRING to Null terminated
I need to convert a UNICODE_STRING structure to a simple NULL TERMINATED STRING.
typedef
struct _UNICODE_STRING
{
USHORT Length;
USHORT MaximumLength;
PWSTR …
