Tagged Questions
4
votes
4answers
6k views
Cyrillic characters in PHP's json_encode
I'm trying to encode Cyrillic UTF-8 array to JSON string using php's function json_encode. The sample code looks like this:
<?php
$arr = array(
'едно' => 'първи',
...
2
votes
7answers
724 views
PHP: case-insensitive preg_replace of a cyrillic string in UTF8
I have a PHP 5.3 script displaying users of my web site and would like to replace a certain Russian city (stored in UTF8 in PostgreSQL 8.4.7 database + CentOS 5.5/64 bits Linux) by its older name (it ...
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
3answers
538 views
Problem with python xml.dom.minidom.parse and utf-8 xml file with cyrillic
sorry for my english :)
I have a problem with parsing xml file in utf-8 with cyrillic text in content
some rows from xml:
............
<programme start="20110405022000 +0300"
...
1
vote
3answers
571 views
How do I get Cyrillic in the output, Python?
how do I get Cyrillic instead of u'...
the code is like this
def openfile(filename):
with codecs.open(filename, encoding="utf-8") as F:
raw = F.read()
do stuff...
print some_text
...
0
votes
0answers
49 views
Can't setup utf-8… Saved text is displayed differently in different text editors. Plus, text is detected as utf-8, but rectangles are displayed
I'm struggling with a proper displaying of cyrillic letters on the web-page as utf-8. Here is a magic...
I use Wampserver.... I excluded from index.php any css, js, php (because I thought it could be ...
0
votes
1answer
114 views
html page displays cyrillic symbols OK, if contains charset=windows-1251, but not utf-8
Well... Html pages and mysql tables contain cyrillic text.
For displaying the cyrillic text Барысаў2000 I use
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
on ...
0
votes
0answers
257 views
Mysql Problem with reading cyrillic data
HI,
I have a problem reading cyrillic data from a mysql database (5.0.) with java. The data is stored in UTF8. I read the data over ODBC. Most of the characters are ok, but some characters are ...
-1
votes
3answers
721 views
How to convert text to UTF-8 Delphi
I have function that returns a HTML page from Internet, but the Cyrillic symbols are displayed with some others unknown characters.
How can i convert that text and be able to see the normal Cyrillic ...