Tagged Questions
4
votes
2answers
164 views
Unicode characters (Cyrillic) with Intel Fortran
Does anyone have any experience with using Unicode in Fortran? How does one pass Cyrillic characters, and open files with Cyrillic characters in their names?
Details:
I have a Fortran executable ...
2
votes
3answers
286 views
Cyrillic transliteration in PHP
How to transliterate cyrillic characters into latin letters?
E.g. Главная страница -> Glavnaja stranica
This Transliteration PHP Extension would do this very well, but I can't install it on my ...
2
votes
1answer
446 views
Problem with cyrillic letters in PDF generated with iText in Android
I am tring to generate a PDF in my android application. I use iText and it generates PDF but only letters in english are shown. I found example code for iText working with unicode. I tried this ...
2
votes
1answer
295 views
Flash CS4/AS3: differing behavior between console and textarea for printing UTF-16 characters
trace(escape("д"));
will print "%D0%B4", the correct URL encoding for this character (Cyrillic equivalent of "A").
However, if I were to do..
myTextArea.htmlText += unescape("%D0%B4");
What gets ...
2
votes
2answers
291 views
I18n and Passwords that aren't US-ASCII, Latin1, or Win1252
How do you handle passwords for services when the user enters something that is best represented in Unicode or some other non-Latin character encoding?
Specifically, can you use a Cyrillic password ...
1
vote
1answer
44 views
convert KOI8-R xml node into unicode in c#
I have the following xml:
<root>
<text><![CDATA[ОПЕЛХМЮБЮ ОПЕГ БЗПРЪЫ ЯЕ АЮПЮАЮМ, Б ЙНИРН ЯЕ]]></text>
</root>
I know this text is generated using encoding KOI8-R ...
1
vote
1answer
120 views
Can't copy russian(cyrilic or Unicode) symbols using SendInput(Edit1.Text);
procedure SendText(ds:string);
var
TI: TInput;
KI: TKeybdInput;
i: integer;
begin
TI.Itype := INPUT_KEYBOARD;
for i := 1 to Length(ds) do
begin
KI.wVk := Ord(UpCase(ds[i]));
...
0
votes
2answers
204 views
Cyrillic NSString to Unicode in objective-c
I want to send Cyrillic string as parameter over webservice from iPhone to .net framework server. How should I encode it correctly? I would like the result to be something like:
...
0
votes
3answers
534 views
Python: how to convert from Windows 1251 to Unicode?
I'm trying to convert file content from Windows-1251 (Cyrillic) to Unicode with Python. I found this function, but it doesn't work.
#!/usr/bin/env python
import os
import sys
import shutil
def ...
0
votes
1answer
330 views
cyrillic font problem in android
I gave a somewhat simple problem. I have a .ttf font with Cyrillic Unicode support (Macedonian) but when i use it in my application only the Latin characters are in the font and the Cyrillic stay the ...
0
votes
1answer
463 views
Case insensitive search in Qt with SQLite
I have an SQLite database with cyrillic rows in it.
For example:
CREATE TABLE customer (
id INTEGER PRIMARY KEY,
name TEXT,
surname TEXT
);
And I have many rows in it. Suppose I have two ...