0
votes
3answers
31 views
How do I read a unicode url with PHP?
I have a unicode url: \test.php?sText=Московский
I would like to use the $_Get function to work with the value of sText. The code I have for test.php is:
<?php
$sVar = $_GET['sText'];
echo …
2
votes
2answers
22 views
Classic ASP: How to write unicode string data in classic ASP?
How can I show an nvarchar column that stores unicode data (Entered with the zawgyi1 font) in a classic ASP web page?
When I retrieve and write the value to the page, it shows "?????". I set my ASP …
0
votes
2answers
22 views
String causes rendering exception with utf-8 defined
One of my template tags should return a list of links; most of the elements get their name from the database with the exception of one, which I'll hardcode because it will never change.
lista_menu = …
0
votes
2answers
9 views
Reading web pages / unicode
hello
I have this function in Delphi 2009 /2010
It returns garbage, now if I change the char,pchar types to Ansichar,Pansichar it returns the text but all foreign unicode text is garbage. it drive me …
0
votes
1answer
27 views
Python csv library with Unicode/UTF-8 support that “just works”
The csv module in Python doesn't work properly when there's UTF-8/Unicode involved. I have found in Python documentation (http://docs.python.org/library/csv.html) and other webpages snippets that work …
0
votes
2answers
48 views
What is the easiest way to convert a char array to a WCHAR array?
In my code, I receive a const char array like the following:
const char * myString = someFunction();
Now I want to postprocess it as a wchar array since the functions I use afterwards don't handle …
0
votes
4answers
72 views
How to convert std::wstring to a TCHAR*
std::wstring.c_str() returns a wchar_t*.
How do I get from wchar_t* to TCHAR*, or from std::wstring to TCHAR*
Thanks
1
vote
3answers
38 views
How to convert a byteOffset into a charOffset in a Java String?
I have a byte offset into a standard Java String, and I would like to convert that to a character offset.
In practice this will mean a method like charOffsetBefore(int byteOffset) since any byte …
3
votes
4answers
94 views
What is internal representation of string in Python 3.x
In Python 3.x, a string consists of items of Unicode ordinal. (See the quotation from the language reference below.) What is the internal representation of Unicode string? Is it UTF-16?
The items …
0
votes
5answers
71 views
Avoid printing unicode replacement character in Java
In Java, why does Character.toString((char) 65533) print out this symbol: � ?
I have a Java program which prints these characters all over the place. Its a big program. Any ideas on what I can do to …
0
votes
1answer
62 views
PHP: Make Site Unicode Compatible
Hello,
How can i make my site unicode compatible to support more languages other than english.
Thanks
2
votes
2answers
216 views
Is an update to D2010 really meaningful
I am trying to migrate my own projects to delphi 2010. But it seems to be very difficult.
I use TntControls for old projects. If I remove this library, some runtime functions must be re-implemented …
1
vote
3answers
44 views
Unicode string literals in C# vs C++/CLI
C#:
char z = '\u201D';
int i = (int)z;
C++/CLI:
wchar_t z = '\u201D';
int i = (int)z;
In C# "i" becomes, just as I expect, 8221 ($201D). In C++/CLI on the other hand, it becomes 65428 ($FF94). Can …
1
vote
0answers
47 views
How can I set the encoding of shell-command-on-region output?
I have a small elisp script which applies Perl::Tidy on region or whole file. For reference, here's the script (borrowed from EmacsWiki):
(defun perltidy-command(start end)
"The perltidy command we …
0
votes
2answers
33 views
DB2 database using unicode
I have a problem with DB2 databases that should store unicode characters. The connection is established using JDBC.
What do I have to do if I would like to insert a unicode string into the database?
…
