Linked Questions

1 vote
0 answers
166 views

i'm working on a java project and i have a package that contains many clasees (more than 100 files) some files are not saved with utf-8 and this cause some problem in the compilation proccess.. my ...
James's user avatar
  • 1,476
67 votes
11 answers
255k views

I have an ANSI encoded text file that should not have been encoded as ANSI as there were accented characters that ANSI does not support. I would rather work with UTF-8. Can the data be decoded ...
Liam's user avatar
  • 21.1k
57 votes
9 answers
176k views

I have an Arabic file encoded in ISO8859-15. How can I convert it into UTF8? I used iconv but it doesn't work for me. iconv -f ISO-8859-15 -t UTF-8 Myfile.txt I wanted to attach the file, but I don't ...
Hakim's user avatar
  • 11.9k
50 votes
5 answers
115k views

I have a file saved as UCS-2 Little Endian I want to change the encoding so I ran the following code: cat tmp.log -encoding UTF8 > new.log The resulting file is still in UCS-2 Little Endian. Is ...
jedatu's user avatar
  • 4,123
25 votes
9 answers
76k views

I've created a systemd service file (specifically for svnserve; I'm actually using the example from here https://stackoverflow.com/a/40584047/464087), and when I enable it, typing sudo systemctl ...
EricS's user avatar
  • 618
27 votes
8 answers
58k views

I am trying to point iconv to a directory and all files will be converted UTF-8 regardless of the current encoding I am using this script but you have to specify what encoding you are going FROM. How ...
Blainer's user avatar
  • 2,712
14 votes
3 answers
21k views

I have a bunch of text files that are encoded in ISO-8851-2 (have some polish characters). Is there a command line tool for linux/mac that I could run from a shell script to convert this to a saner ...
Marcin's user avatar
  • 7,994
9 votes
1 answer
58k views

I'm trying to transcode a bunch a files from ASCII to UTF-8. For that, I tried using iconv: iconv -f US-ASCII -t UTF-8 infile > outfile -f ENCODING the encoding of the input -t ENCODING the ...
Ram's user avatar
  • 347
10 votes
3 answers
29k views

I was working on my project in Windows using Eclipse (and I didn't check that my encoding was CP-1251). Now am going to work with my project in Linux with Eclipse too, but with UTF8 encoding, so all ...
bukka.wh's user avatar
  • 913
3 votes
4 answers
67k views

please help! I am using sqlite3 in ipython notebook to create an SQL database. I think I have successfully created the database, but when I go to look at it I am receiving an encoding UTF8 error. Here ...
jessMSUgrad's user avatar
5 votes
3 answers
9k views

I had to change the Eclipse Indigo encoding to UTF-8. Now all the spécial characters as éàçè are replaced with �. I can do a search and replace but I wonder if there is better solution. Thanks
Momo's user avatar
  • 2,491
5 votes
3 answers
5k views

Well guys, first, here is my code: <?php ob_start(); $pilot_id = $_GET['id']; //-- Server Variables $dbServer = 'localhost'; $dbUser = 'root'; $dbPassword = '*************';...
Ygor Montenegro's user avatar
0 votes
2 answers
3k views

I am trying to compile a load of .c files. (1) The files compile OK, using cc cc -Wall -Wextra -Wunreachable-code -ggdb -O0 *.c (2) Then, I need to make a static library from the final output, to use ...
Imme22009's user avatar
  • 4,179
4 votes
1 answer
10k views

I am going through the Pandas "cook book" chapter 1, bikes.csv example. When I try to change parse_dates to ['Date'], dayfirst=True, index_col to date like this: (at line: In [6], in the cook book's ...
Z.Grey's user avatar
  • 164
0 votes
2 answers
14k views

I was writing files using l_file := utl_file.fopen('OUT', 'a.txt', 'w'); utl_file.put_line(l_file, 'Rosëttenville'); but I changed this to l_file := utl_file.fopen_nchar('OUT', 'a.txt', 'w', 32767);...
Superdooperhero's user avatar

15 30 50 per page