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
0 answers

Search cyrillics in custom listview does not work android

I am trying to develop search application with cyrillics. I have one edittext and listview. I would like to search the listview with the content of edittext. I am having custom list view. Here is my code: Here is the main activity: package…
vikifor
  • 3,426
  • 4
  • 45
  • 75
0
votes
2 answers

Decoding Cyrillic in Python - character maps to

I receive a server response, bytes: \xd0\xa0\xd1\x83\xd0\xb1\xd0\xbb\xd0\xb8 \xd0\xa0\xd0\xa4 \xd0\x9a\xd0\xa6\xd0\x91 This is for sure Cyrillic, but I'm not sure which encoding. Every attempt to decode it in Python fails: b =…
Artem
  • 13
  • 5
0
votes
1 answer

UnicodeDecodeError: 'ascii' codec can't decode byte while installing aldryn-newsblog

I'm developing a web page using Python 2.7, Django 1.7, Django-CMS 3.1.3. I've decided to install aldryn-newsblog. But while installing I received an error message ...UnicodeDecodeError: 'ascii' codec can't decode byte... As I found out it was…
St Pavel
  • 339
  • 1
  • 3
  • 18
0
votes
1 answer

Ruby script breaks Cyrillic characters in ConEmu

I have a simple Ruby script in UTF8-encoded file 01.rb: #encoding: utf-8 puts "Hello, Марина!" gets It works perfectly in Win7 console (cmd.exe), but when I try to run it in ConEmu, it returns: $ ruby 01.rb Hello, Р?Р°С?РёР?Р°! Tried to use $…
StragaSevera
  • 466
  • 1
  • 4
  • 14
0
votes
1 answer

MediaWiki Cyrillic page title loading

I help run a small "wiki farm" with a wiki in several languages, including English (the primary), German, Spanish, French, Portuguese, Chinese, Korean, and Russian. Recently I upgraded the server software as follows: MediaWiki from 1.14 to…
0
votes
1 answer

PHP at CLI with cyrillic content?

I need for a php script support for cyrillic characters. /etc/php5/cli/PHP.ini: default_charset = "UTF-8" My script asks values from a MySQL table (collation: utf8_general_ci) and write those values inside a php variable. The output of the script…
fips123
  • 261
  • 2
  • 11
0
votes
1 answer

PHP emails from form scramble cyrillic characters

Here's what this is all about. Since I am using PHP as of today I am facing this issue. I have build a form , for the ISP company that I work for, which emails the form results. Customers fill out this form to request new service from us. Since the…
0
votes
0 answers

Cyrillic input retrieved as Mojibake

I am developing web app using PrimeFaces and postgresql. I have some forms which are related to the database. The project need to work with cyrillic characters. So when I fill some characters in the text field the cyrillic is ok but when I click…
Berchev
  • 87
  • 4
  • 12
0
votes
0 answers

Run 'mongod.exe' with '--dbpath' containing the Cyrillic alphabet

I want to run MongoDB to save data into user AppData (on Windows). mongod.exe --dbpath "C:/Users/%User%/AppData/Local/%MyFolder%" But in my case %User% may contain Cyrillic. Thus mongod.exe does not start with an error ... [initandlisten] exception…
ZolotovPavel
  • 138
  • 6
0
votes
1 answer

How to acces string with mixed 1 byte and 2 byte symbols?

I read questions and answers for a quiz from a file in UTF-8 encoding but the answer can consists 1 byte symbols (English) and 2 byte symbols (Russian) in the same text: "best car тайота"` I need to write answer replaced with "*" so it looks like…
ratojakuf
  • 708
  • 1
  • 11
  • 21
0
votes
1 answer

AngularJS cyrillic characters and get params

When i try to send cyrillic characters as get params They are transformed into that What am I doing wrong?
droptheplot
  • 608
  • 6
  • 22
0
votes
0 answers

Android Espresso Russian letter

I'm using Espresso to test my Android application. I try to type russian text to EditText using typeText(). And i get an exception java.lang.NullPointerException: Failed to get events for string blabla... Anybody, who knows the solution? My…
kirik85
  • 1
  • 1
0
votes
0 answers

CakePHP3 - MySQL Cyrillic symbols

I have CakePHP3 application using utf-8 encoding. On my local win machine its working fine. But on Linux server cyrillic symbols are not correctly recorded in database, something like this - Опааа. Browser output in general is ok, except some…
0
votes
3 answers

FileUtils.readFileToString() from Apache Commons IO works incorrectly with Cyrillic

I am using FileUtils.readFileToString to read contents of a text file with JSON at once. The file is UTF-8 encoded (w/o BOM). Yet, instead of cyrillic letters I get ?????? signs. Why? public String getJSON() throws IOException { File…
Mikhail Batcer
  • 1,938
  • 7
  • 37
  • 57
0
votes
1 answer

How to insert cyrillic-based text to mysql?

Somehow, when I insert Cyrillic data to my database column called address(Varchar 40), it just inserts it halfway, and the other half is lost. But then when I checked the source of my page while retrieving the data, I saw the Cyrillic text has been…
Suat Hyusein
  • 495
  • 3
  • 14