Questions tagged [cyrillic]

For questions about code that deals with any kind of Cyrillic (including the original Cyrillic script and the modern Cyrillic alphabets, such as the Russian alphabet).

563 questions
0
votes
2 answers

Cyrillic in HelpProvider

How can I use Cyrillic strings in Win Form HelpProvider class? That's what I got now: this.helpProvider.SetShowHelp(this.gaParametersText, true); this.helpProvider.SetHelpString(this.gaParametersText, "Введите переменные в виде границ поиска,…
Pavel Oganesyan
  • 6,774
  • 4
  • 46
  • 84
0
votes
1 answer

Change cyril to western characters (both in utf-8) - php

I've got a problem with cyril characters. Our site is in utf-8 and accepts these characters, however our external sources where we pass on characters does not accept them. We are trying to pass on persons names. They have other different charsets…
0
votes
0 answers

Reading the json from text file that has cyrillic letters

I have this text in txt file: [ { "book_name": "CYRILLIC LETTERS", "book_id": "Text", }, { "book_name": "CYRILLIC LETTERS", "book_id": "Text", }, ] When I use StreamReader to read it, it is replacing…
Dilshod
  • 3,189
  • 3
  • 36
  • 67
0
votes
2 answers

getBytes() doesn't work for Cyrillic letters

I found some answers but none of them works for me. I want to make a pdf file from a html, but the problem is that my html has Cyrilic letters and I found that there's something to do with this simple code: String s = "Здраво Kris"; byte bytes[] =…
Kristijan Iliev
  • 4,901
  • 10
  • 28
  • 47
0
votes
1 answer

Error while parse an XML with cyrillic serbian chars anda save into DB

I've a complex XML file and I've to parse it with Java to get some text inside some tags. This is done correctly, but there are some rows with cyrillic characters (serbian) and in XML appear in correct mode, when I get it with Java in another one,…
Armeice
  • 31
  • 10
0
votes
0 answers

Android cyrillic json

Im new in android development and I'm working on a small app right now. I have JSON file that I use to make a list. Everything was fine with the app until I changed the JSON file. I need to use cyrillic alphabet. The problem is that when I run the…
natt1708
  • 21
  • 1
  • 5
0
votes
2 answers

Cyrillic characters in Python 2.7

The function returns places in radius using the Google Places API. To be exact, I use this library to handle the task. The problem is that cyrillic symbols are shown like this: ÐО Сбербанк РоÑÑии, КиевÑкое отделение…
Elena
  • 149
  • 1
  • 3
  • 13
0
votes
1 answer

DOMPDF does not support Cyrillic characters. Easy fix?

I want to use russian letters in my html pages which i later convert into a PDF using DOMPDF. all of the russian letters are shown as question marks. What is the easiest fix for this? i've seen something called mbstring module. I think this will not…
Boriss
  • 486
  • 1
  • 6
  • 21
0
votes
1 answer

preg_match is not working as expected

I'm using such pattern to find cyrillic symbols in my text, but it is returning true on unicode currency symbols "₴" (ukrainian hryvnya) and "€" (euro) $pat = '/.*[А-Яа-яёЁ].*/'; $res = preg_match($pat, $str); What is the problem?
0
votes
1 answer

Can not correctly insert cyrillic symbols into NTEXT field in SQL Server database

How can I insert cyrillic symbols into my database? I have table Articles and Web API controller with CRUD operations. Articles { id: int, summary: nvarchar, text: ntext } If I insert data using t-sql like insert into Articles values (1, N'текст',…
feeeper
  • 2,865
  • 4
  • 28
  • 42
0
votes
0 answers

Charset $ _POST param

When I put сyrillic text to textarea and submit form the at server I get collision charset param $_POST['text']: string(571) " � Ð°Ñ€Ñ‚Ð¸Ñ Ð›Ð”ÐŸÐ Ð¿Ð¾Ð´Ð°Ð»Ð° в Ñуд на бывше All php files in charset UTF-8 (without BOM) HTML page…
AllenDegrud
  • 189
  • 2
  • 13
0
votes
3 answers

How to insert DATE using jsp

I have a feedback page on my site that contains name, email and comments. Here is my code on JSP and I'm using Apache Tomcat 7.0 and Oracle DB String query = "Insert into t_comments(name, email, comments) values('" +…
olgacosta
  • 1,076
  • 4
  • 15
  • 36
0
votes
1 answer

Cannot use npm to-uri package

trying to use https://www.npmjs.org/package/to-uri, but it says toURI function is not defined, how do I make it global or call it from package directly?
Herokiller
  • 2,891
  • 5
  • 32
  • 50
0
votes
0 answers

Java. Sending email to cyrillic email issue

there is a problem with sending messages to email address in cyrillic symbols using java.mail.internet.InternetAddress. When im trying to parse email address it checks every char to fit range between 040 and 0177 ASCII chars, and it fails if it…
0
votes
1 answer

How to upload files named in cyrillic which conserve their names after the upload (PHP)?

I am uploading files which names are in cyrillic. But when I open the directory where I have saved this files , its names arent the same and are composed by very strange caracters РћР±СЏРІР°. My php file is encoded in UTF - 8 here is the code of the…
Montoolivo
  • 137
  • 2
  • 3
  • 15