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).
Questions tagged [cyrillic]
563 questions
-2
votes
1 answer
Cyrillic sets CP 1048 conversion
I am using a printer which needs Cyrillic sets CP 1048 for printing Kazak and Russian language in text mode. How do we convert a text to CP 1048? CP 1048 is combined character set for Kazak and Russian languages. These languages come together in…

user3658516
- 113
- 11
-2
votes
1 answer
Python Openpyxl Language Russian
I have a problem when I pull and print the Russian-language strings
Use Python 2.7 and Lib Openpyxl
Code use is :
workbook = load_workbook(filename ='sample.xlsx')
first_sheet = workbook.get_sheet_names()[0]
worksheet =…

Bonni
- 41
- 2
- 10
-2
votes
1 answer
PHP Russian characters
I have the following php code that I need to run on linux:
$BannedList = array
(
'рублей'=> 'i'
);
foreach ( $BannedList as $BannedWord => $Option )
if ( preg_match ( '#\\b'. preg_quote( $BannedWord, '#' ). '\\b#'. $Option,
…

user118708
- 197
- 1
- 13
-2
votes
1 answer
Pasting russian in desktop application
I created a simple desktop file editor in Dev C++.
There I can write Russian characters, but when I copy and paste Russian from other programs I see only "?????".
What can I do?
-2
votes
1 answer
Regex to be made which should include international and Cyrillic characters
The regex should fulfill the below conditions:
Minimum of 3 characters (includes alphabets and numbers, not
including Special Characters
)
It must have at least 3 compulsory alpha-numeric characters excluding
special characters
All alphabets…

Pratttsssssssssssss
- 13
- 5
-2
votes
1 answer
How to get rows written in Cyrillic / Russian in SQL Server
I have a SQL Server table which stores all the data across the world. But i want to retrieve only russian characters from table specifically.
I tried below query but this is returning all NON ENGLISH data.
select * from tablename where column like…

crazyavengers
- 71
- 1
- 10
-2
votes
1 answer
Presence of junk characters while crawling a Russian website
I am trying to crawl a Russian website in Linux, but the output seems to be junk characters.
The website is encoded in UTF-8 and while reading I am setting the encoding as UTF-8. However this doesn't seem to solve the problem.
What should I do to…

Jigar
- 1
- 2
-3
votes
1 answer
Problems with Cyrillic. Using AJAX, PHP and MySQL
I have a database with such parameters:
character_set_client: utf8
character_set_connection: utf8
character_set_database: utf8
character_set_filesystem: binary
character_set_results:utf8
character_set_server: cp1251
character_set_system: utf8
I am…

ik00ma
- 422
- 6
- 24