2
votes
1answer
33 views

Converting Legacy Mac OS Japanese Encoding to Unicode in Windows

Several years ago, Apple released a document that outlines the mappings between Apple's "Mac OS Japanese" Character Set and Unicode code points. ...
0
votes
1answer
51 views

compiling BUTT with mingw64 cannot convert 'char*' to ' LPWSTR {aka wchar_t*}' in assignment

I'm trying to compile BUTT (http://butt.sourceforge.net/) on windows with MingwW64. I seem to be running into errors of the type error: cannot convert 'char*' to 'LPCWSTR {aka const wchar_t*}' the ...
0
votes
0answers
32 views

Windows Unicode keyboard hook

I'm developing an application that in some point needs to capture the keyboard and mouse user input. I had no problems installing and using the mouse hook, but the keyboard is not working properly. I ...
0
votes
2answers
64 views

Convert raw byte string to Unicode without knowing the codepage beforehand

When using the right-click menu context, windows passes file path as raw (byte) string type. For example: path = 'C:\\MyDir\\\x99\x8c\x85\x8d.mp3' Many external packages in my application are ...
0
votes
1answer
28 views

RegQueryValueEx giving strange data

DWORD dwType = REG_SZ; TCHAR keyData[1024]; DWORD keyDataLength = 1024; cchValue = MAX_VALUE_NAME; achValue[0] = '\0'; HKEY currentKey; long err = RegOpenKeyEx(HKEY_CURRENT_USER, ...
0
votes
0answers
16 views

Print Unicode chars with command line in Windows

I have a file with this content: "════" I'm want to print it using command line, I tried with "print file.txt /d:lpt1" and "type file.txt > lpt1" but it allways prints "ÍÍÍÍ" on paper. My idea is ...
0
votes
1answer
52 views

Unable to send Unicode to SQL Server using pymssql

I'm having issues sending unicode to SQL Server via pymssql: In [1]: import pymssql conn = pymssql.connect(host='hostname', user='me', password='password', database='db') ...
1
vote
1answer
211 views

Convert unix/linux filename character set to windows

I used mkdir() to make some directories via PHP in Farsi and Arabic Languages. I want to move folders into windows but have problem with folders names. example: I wrote : "سلام" but in windows ...
2
votes
2answers
67 views

WriteConsoleW, wprintf and Unicode

AllocConsole(); consoleHandle = GetStdHandle(STD_OUTPUT_HANDLE); WriteConsoleW(consoleHandle, L"qweąęėšų\n", 9, NULL, NULL); _wfreopen(L"CONOUT$", L"w", stdout); wprintf(L"qweąęėšų\n"); Output is: ...
-1
votes
1answer
100 views

Using Unicode Urdu fonts on Buttons and Labels [closed]

I am using Jameel Nastaliq Fonts to display Urdu. The font works well when I type in rich textbox but on Label it just tears down each glyph separately. How to make it work with labels and buttons? ...
0
votes
1answer
152 views

Is there any universal way to convert wstring to std::string considering all possible encoding?

I am using following api to encode wstring to string, string utf8_encode(const std::wstring &wstr) { int len = WideCharToMultiByte(CP_UTF8, 0, wstr.c_str(), -1, 0, 0, 0, 0); ...
1
vote
1answer
102 views

Makes sense to use wchar_t/wmain in a windows c++ console application?

I have been writing a new command line application in C++. One platform we support is, of course, Windows. The Windows console, by default, uses the OEM code pages depending on the locale (for ...
0
votes
2answers
38 views

UNICODE_STRING is null or not?

How to check if buffer of UNICODE_STRING structure is null or not ? Its crashing while accessing buffer value, if null, but when i m checking it against null it return true. if ( ...
3
votes
0answers
169 views

Python UnicodeEncodeError: codec can't encode character [duplicate]

I created an executable file from my python script (checkData.py) I'm trying to pass string data, which includes locale characters, to this exe file from another python script something like below: ...
0
votes
1answer
91 views

Java Unicode Issue on Windows

When I run my application within Netbeans everything works fine - I can read/write unicode texts and filenames, but when I run the jar by double click or with java -jar test.jar I only get strange ...
1
vote
1answer
142 views

Drag & Drop of files with unicode names to batch file in Windows

I want to process some files through a batch file via drag & drop under Windows. Some of the files have unicode characters in their names, e.g. Example_ěø.txt Unfortunately, many of the ...
0
votes
1answer
91 views

Unicode in <button> is not rendered properly on Safari 5.1 (Windows)

in Safari 5.1/Windows XP, the unicode arrow in the button element is not shown. <span> is working fine. <span>▼</span> <button>▼</button> Screenshot: ...
1
vote
2answers
83 views

None Unicode library and windows locale

I'm using(what seems to be) an ansi(or ascii??) dll library. I think it is such because the header file provided with the lib shows function using char*'s and LPSTR and LPCSTR and structs with char ...
1
vote
1answer
66 views

Invalid conversion from utf8 string when it is in variable

The effect here is that the message text is correct in greek letters but message title is all empty boxes, sometimes with other texts there are chinese chars. string msg= "ένα μήνυμα"; ...
1
vote
0answers
85 views

virtualKeycode ToUnicode

I've been trying to get the unicode character for a given keycode, but i cannot figure out why i have to give so many parameters. From MSDN: int WINAPI ToUnicode( _In_ UINT wVirtKey, _In_ ...
2
votes
1answer
128 views

How do you deduce the charset from unicode value?

Now I can get unicode value, I have to get its charset before from unicode value calling HFONT CreateFont( int nHeight, // height of font int nWidth, // average ...
1
vote
2answers
172 views

What are the disadvantages to not using Unicode in Windows?

What are the disadvantages to not using Unicode on Windows? By Unicode, I mean WCHAR and the wide API functions. (CreateWindowW, MessageBoxW, and so on) What problems could I run into by not using ...
3
votes
1answer
316 views

How to make Unicode charset in cmd.exe by default?

866 charset installed by default in Windows' cmd.exe is poor and inconvinient as compared with glorious Unicode. Can i install Unicode by default or replace cmd.exe to another console and make it ...
1
vote
1answer
39 views

Is there a way to use _T/TEXT “conditionally” inside a macro?

This question is specific to Visual C++ (you may assume Visual C++ 2005 and later). I would like to create glue code for a program from unixoid systems (FreeBSD in particular) in order build and run ...
0
votes
2answers
56 views

How do I read a JSON string in Python/Windows when the string contains non-UTF8 characters?

I think I need to call json.loads() with the character encoding set to something other than utf-8 which I understand is the default. Can someone tell me where I can find out how to do this please? I ...
9
votes
2answers
201 views

More unicode characters in windows console than expected

I want to print russian and german characters in windows console. So I wrote a small test program to understand how well it works: PrintStream ps = new PrintStream(System.out, false, "UTF-8"); ...
0
votes
1answer
307 views

What unicode encoding (UTF-8, UTF-16, other) does Windows use for its Unicode data types?

There are different encodings of the same Unicode (standardized) table. For example for UTF-8 encoding A corresponds to 0x0041 but for UTF-16 encoding the same A is represented as 0xfeff0041. From ...
2
votes
3answers
251 views

How to make Windows file associations work with non-ASCII file names?

I need to register the file association for a certain file type - in fact, I just need to launch a certain Java program with certain arguments and a name of that file. I got as far as the following: ...
5
votes
2answers
292 views

How to print Latin characters to the C++ console properly on Windows?

I'm having a problem writing French characters to the console in C++. The string is loaded from a file using std::ifstream and std::getline and then printed to the console using std::cout. Here is ...
1
vote
3answers
238 views

Display both of Korean and Chinese language in C++ [closed]

I have a text that I need to display in a messagebox in Chinese and Korean in C++. This is my text: Korean: 당신은 방을 입력하기에 충분한 돈을 가지고 있지 않습니다. Chinese: 你没有足够的钱进入房间。 But when I try to save that ...
5
votes
3answers
349 views

UNICODE, UTF-8 and Windows mess

I'm trying to implement text support in Windows with the intention of also moving to a Linux platform later on. It would be ideal to support international languages in a uniform way but that doesn't ...
3
votes
4answers
232 views

Wrong encoding in filenames created on Windows XP by Python script

My Python script creates a xml file under Windows XP but that file doesn't get the right encoding with Spanish characters such 'ñ' or some accented letters. First of all, the filename is read from an ...
1
vote
1answer
131 views

How to create a Gdk.Pixbuf from a Unicode filename in Windows?

I have a C# / Mono / Gtk# program that simply loads files dropped in the window as Gdk.Pixbuf and displays them. It works well on Ubuntu. But on Windows if I try to drop a file with a non-ASCII ...
0
votes
1answer
164 views

Win console, How to recognize this unicode character?

I need to recognize a unicode special character into CMD console, the special char is this: – (it's like a normal dash but it's not. It is the U+2013 character according to Wikipedia. PS: you can ...
0
votes
0answers
152 views

GetShortPathNameW() vs dir /X

In the folder C:\4 there are files: raa.xml, ŕáâ.xml, абв.xml . The console command dir /X shows, that two of them have 8.3 names: C:\4>dir /X Том в устройстве C имеет метку Acer Серийный номер ...
-1
votes
1answer
152 views

SHELLEXECUTEINFO UNICODE support?

I used ShellExecuteEx() to call an executable file. And the following are the parameters I set for SHELLEXECUTEINFO structure. SHELLEXECUTEINFO ShExecInfo = {0}; ShExecInfo.cbSize = ...
1
vote
0answers
83 views

Microsoft Outlook does not save files consistently

I'm working on a .net project and interacting with outlook. The idea is that the user gets emails on his microsoft outlook client (outlook 2007 or outlook 2010). He chooses one of the emails and saves ...
0
votes
1answer
250 views

MultiByteToWideChar converts (°) degree symbol to � [closed]

I am trying to convert a string from ANSII to Wide char. I am using CA2W(string,CP_UTF8) which internally uses MultiByteToWideChar. While debugging it shows that MultiByteToWideChar converts ° ...
2
votes
2answers
246 views

How to test my application is UNICODE Compatible or not?

I apologise if it is a silly question..I recently developed an application in windows with C and WinApi. I am in need to check whether application is UNICODE compatible or not. How can I test my ...
0
votes
2answers
150 views

C++ multilanguage string output

Everything that I want to do it's just only to output one line of text: #include <iostream> #include <string> int main(void) { std::wstring ...
2
votes
1answer
428 views

TTF/OTF font selection in R for windows: onscreen vs pdf()

I know that in R on Linux or Mac, fonts are consistently defined as an argument family="Charis SIL" to par(), text(), or one of the graphic device functions like tiff(), svg(), etc (substitute "Charis ...
4
votes
2answers
329 views

String-to-byte sequence translation using a fixed encoding, preferably UTF-8

In a windows c++ console application I would like to read a password from command-line input. The password is used for encryption (and later decryption, maybe elsewhere in the world on a windows pc ...
1
vote
1answer
88 views

GTK message_dialog and unicode strings

I'm writing a tool that suppose to have GTK gui and operate with windows registry. I have, for example, such a callback function: static void msg_INFO(GtkWidget *main_window, gpointer data) { ...
3
votes
2answers
129 views

Is it safe to assume all Windows platforms will be in UCS-2 LE

I'm linking a text file into my project by adding it to the resource and then loading it. I use LockResource and a static_cast to cast it to a std::wstring std::wstring ...
1
vote
1answer
145 views

String-Conversion: MBCS <-> UNICODE with multiple \0 within

I am trying to convert a std::string Buffer - containing data from a bitmap file - to std::wstring. I am using MultiByteToWideChar, but that does not work, because the function stops after it ...
0
votes
2answers
374 views

Is there a tool to batch convert UTF-8 filenames back to ISO-8859-1 on windows?

I downloaded a lot of files within multiple subdirectories from a remote FTP server, the issue is that these files have non latin file names and they downloaded with weird characters like: ë, Ã, ì, ...
6
votes
3answers
496 views

Java, Unicode, UTF-8, and Windows Command Prompt

I have a jar file that is supposed to read a UTF-8 encoded file—that I wrote in a text editor under Windows—and display the characters to the screen. Under OS X and Linux this works flawlessly. I'm ...
1
vote
1answer
105 views

Start with UNICODE supported WINAPI programming

I started developing an application in C using WINAPIs. I want my application to be UNICODE supported. I am using mingw with gcc compiler. What should I do to make my app UNICODE support. It ...
0
votes
2answers
185 views

Windows application ANSI to Unicode

I have made a mistake by developing a big Windows application that supports only ANSI. What are all the impacts, if my application doesn't support Unicode? Also, I am planning to migrate my code to ...
1
vote
4answers
2k views

Convert ASCII string to Unicode? Windows, pure C

I've found answers to this question for many programming languages, except for C, using the Windows API. No C++ answers please. Consider the following: #include <windows.h> char *string = "The ...

1 2 3 4 5