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
-1
votes
1 answer

Hex to Cyrillic text

I have hex byte string like "D09FD0B5D180D0BDD0B8D0BA" this is "Перник". For each letter of the Cyrillic alphabet, I need 2 bytes. For "П" I need "D0 9F". If I use: char letter = (char) 1055; // this is "П" My problem is how from hex "D0 9F" to get…
Radoslav
  • 75
  • 1
  • 10
-1
votes
1 answer

How to solve Unicode problem in flask production e.g. Ieeo?

I am building flask application with some data in Cyrillic text format. When I serve flask development server in my machine, there is no issue whatsoever sending text in Cyrillic format to the front. However, after deploying it in actual in-house…
Amaraa
  • 1
  • 1
-1
votes
1 answer

Problem with displaying cyrillic string with IBM Java

I'm trying to print simple cyrillic string to console using IBM Java, but instead of correct string there is trash. Latin string prints correctly. What have i do to fix that? I'm using IBM J9 VM (build 2.9, JRE 1.8.0 Windows 10 amd64-64 Compressed…
Oleg
  • 49
  • 10
-1
votes
3 answers

Eclipse printing wrong cyrillic character

I am making an app that uses fiscal printer, and the document that i send to the printer must be in Cyrillic. The problem is that one specific character (one for the tariff group because i am trying to print out a receipt) should be (char)192, but…
Zozinski
  • 73
  • 8
-1
votes
2 answers

How to replace "+" to "Ӯ" and "=" to "ӯ" in my text?

How I can replace "+" to "Ӯ" and "=" to "ӯ" if right or left this symbols have a letters ? I use str_replace() but it replace all that symbols. My text: $str = "+ро ба касе = намебахшид. + метавонист мавз=и =ро гирад. 2+1=3 ва 3 = 2 + 1" I must get…
Andreas Hunter
  • 4,504
  • 11
  • 65
  • 125
-1
votes
1 answer

Russian symbols works wrong

In my command line it doesn't show Russian symbols correctly. Scary symbols instead. I think I should change character set, but how can it be done? Can anyone help me with this problem?
-1
votes
1 answer

SQL cyrillic table name

How to CREATE a table with Cyrillic name and SELECT rows from that table in SQL? Also, how to make a column that accepts Cyrillic characters?
jelic98
  • 723
  • 1
  • 12
  • 28
-1
votes
1 answer

LXML ValueError and UTF strings

I am making a little Python script for mass-editing of HTML files (replacing links to images etc.). Now, the HTML files contain some Cyrillic, that means I have to encode the string UTF-8. I replace all the links in the HTML, and type tag.set(data)…
McLinux
  • 263
  • 1
  • 10
-1
votes
1 answer

SeekableByteChannel russian chars

Recently I've started learning about java.nio. And I have an example in my textbook how to read text file with SeekableByteChannel: int count; Path path; try { path = Paths.get(System.getProperty("user.home") + "/desktop/text.txt"); } catch…
-1
votes
1 answer

search array in Russian

I made a list in tableviewcontroller, then add search bar and search display. But due to the fact that I have an array in Russian language search is not working. If I add the numbers in the array and start search it's work. But if on the Russian…
-1
votes
1 answer

Cyrillic in github.com comments

I have a problems with the files of my github repository. The text in Cyrillic is not displayed properly. Could I actually enable using cyrillic just for comments? Is it actually a guthub issue? Thanks :)
user3166162
  • 71
  • 1
  • 1
  • 3
-1
votes
1 answer

Convert unknown symbols to cyrillic

I have this kind of symbols in db table (Наиме) , and I don't know who inserted this data to table.Is there any way to convert them to cyrillic ?
9900kf
  • 87
  • 1
  • 11
-1
votes
1 answer

jQuery post serialize russian

I am trying to post data to a database and the campaigns run in 6 languages, 1 being Russian and its unable to handle the Cyrillic text. The DTB is setup for UTF8 as the last campaign also used Russian, but jQUery with that…
RemeJuan
  • 823
  • 9
  • 25
-1
votes
1 answer

Cyrillic displays as ??? ???? in PHP

I'm trying to print values from the database, containing countrylist. One of the fields in this database is cyrilic. My PHP script looks like this: include_once("db.php"); $query = mysql_query ("SELECT * FROM country"); $row =…
user2331090
  • 269
  • 1
  • 2
  • 13
-2
votes
1 answer

Getting cyrillic string in richedit with Delphi

I have a formatted text on a wordpad file(rtf). I'm trying to open it on a richedit on a delphi form. The problem is that the string is in cyrillic(Bulgarian) and it's saved with weird hieroglyphs or whatever those are "Âëåçå ïîòðåáèòåë". Is there a…
Ineffable21
  • 153
  • 1
  • 13
1 2 3
37
38