ASCII stands for 'American Standard Code for Information Interchange'. ASCII is a character-encoding scheme based on the ordering of the English alphabet. Since ASCII only contains definitions for 128 characters, numerous other encoding schemes have been created to include characters from other alphabets and other symbols.
Questions tagged [non-ascii-characters]
1055 questions
0
votes
1 answer
Tkinter non-ascii error in search
I'm trying to implement search in Tkinter. Everything works perfect without non-ascii characters in list_box elements (list variable that populates Listbox. However, entering non-ascii character in search returns error:
Exception in Tkinter…

siha63
- 5
- 2
0
votes
3 answers
sort utf string in sql server with join clause
I have the following sql code which works fine but does not sort Party.Name which is non ASCII string:
Select Party.Name
FROM B_Customer
Inner Join dbo.AccDomain On AccDomain.AccID = B_Customer.AccID
Inner Join Party On PartyID =…

Soosh
- 812
- 1
- 8
- 24
0
votes
1 answer
Regex and Javascript : find word with accents
I try to find and stock in HTML paragraphe all the word.
Actually, I have a function like this
p.html(function(index, oldHtml) {
return oldHtml.replace(/\b(\w+?)\b/g, '$1');
});
But it's only return word without accent.
I test on…

jcbaudot
- 60
- 7
0
votes
1 answer
How to know if a data contains non-ascii character?
I'm working with an api which returns some data in the form of 01234⇒56789. Sometimes this data has only numbers which is not a problem but sometimes it returns ⇒ character. As I have to automate the filtering process of selecting the number after…

Rahul
- 3,208
- 8
- 38
- 68
0
votes
1 answer
Same strings are different
I have 2 Strings that are frustating me a lot.
They contain, aparently, the same text, but when comparing them Java don't say that.
The text is "La Coruña". One string is returned via Google Geocoder, and the other is hardcoded by me.
I've tried…

Alberto
- 367
- 3
- 11
0
votes
2 answers
How to convert percent-encoded url to string with non-ascii chars?
This should be an easy one I hope. I have a url:
http://uploads4.wikiart.org/images/marc-chagall/kopeikin-and-napol%C3%A9on.jpg
that is saved into a json file with this code:
paintings = get_all_paintings(marc_chagall)
with open('chagall.json', 'w')…

ian-campbell
- 1,605
- 1
- 20
- 42
0
votes
1 answer
Creating zip file containing the files with UTF-8 encoding name in PHP using /usr/bin/zip
I'm creating and downloading a zip file using /usr/bin/zip in PHP. The problem is that the zip file contains the csv files with the non-ASCII file names. I got the zero-byte file downloaded and the file is not valid.
chdir($tmp_dir); // this is the…

Sithu
- 4,752
- 9
- 64
- 110
0
votes
0 answers
MySQL / PHP - Accented characters causing unusable data to be returned
Here is my code...
$mysqli = new mysqli(HOST, USER, PASSWORD, DATABASE);
mysql_set_charset('utf8');
$sql = "SELECT product_name FROM my_table";
$result = mysqli_query($mysqli, $sql) or trigger_error(mysql_error());
while($row =…

ban-geoengineering
- 18,324
- 27
- 171
- 253
0
votes
1 answer
Foreign Chars in url_title() in Codeigniter
I am using foreign accented chars with url_title() in Codeigniter
function url_title ($str,$separator='-',$lowercase=FALSE) {
if ($separator=='dash') $separator = '-';
else if ($separator=='underscore') $separator = '_';
$q_separator =…

YahyaE
- 1,057
- 1
- 9
- 24
0
votes
1 answer
Python - Decode base64 encoded string with non-ascii characters
I'm working on a Google App Engine application, and I need to hash a password and salt it, and for that I'm using the method below:
def hash_password(password):
#Create salt
salt = base64.urlsafe_b64encode(os.urandom(8))
salted =…

ivanvlopes
- 75
- 7
0
votes
1 answer
Dictionary corrupt the name of the key [Python]
My problem is that when I get input with accent then the dictionary stores different keyname, it replace the accented character wit a character code.
I'm new here I accept every help.
Thank you for your help!
#!/usr/bin/python
# -*- coding: utf-8…

Németh Roland
- 3
- 2
0
votes
0 answers
Receiving non-ascii characters from BLE advertisment data
I developed an app in iOS which detects beacons in range (using CoreBluetooth), but whatever encoding I may use, I only get the characters which have a corresponding ASCII translation (so 0xF0 is not received, but anything from 0 to 0x0F is…
0
votes
0 answers
Fields with accents are not saved in ocomon mysql database
I downloaded a recommended help desk application called Ocomon and I use WAMP .
I installed everything. The database uses utf8_general_ci and the application is in Portuguese (BR) but when I try to put some data with accents, the record is saved,…

NaN
- 8,596
- 20
- 79
- 153
0
votes
2 answers
How to return string with accent from controller to View via Ajax JSon
My problem is that the words that are returned from my controller to view via JsonResult are losing their accent, instead of accent it's getting converted for a symbol.
This word "Finalizar_Saída" is been wrong rendered this way =…

Raphael Ribeiro
- 529
- 5
- 18
0
votes
1 answer
Eclipse console vs Netbeans Console
I have a file with some non-ASCII character like
set myval;[2K[DESC[DESC[D
and I have a Java code to read the file
public static void main(String[] args) {
BufferedReader br = null;
try {
String sCurrentLine;
br = new…

αƞjiβ
- 3,056
- 14
- 58
- 95