0
votes
5answers
57 views
detect UTF-16 file content
Is it possible to know if a file has unicode (16-byte per char) or 8-bit ASCII content ?
1
vote
1answer
102 views
Tcl for getting ASCII code for every character in a string
I need to get the ASCII character for every character in a string. Actually its every character in a (small) file. The following first 3 lines successfully pull all a file's cont …
0
votes
1answer
54 views
Why does ContentResult controller in ASP.NET MVC return UTF-16 when UTF-8 specified?
I have an ActionResult that returns XML for an embedded device. The relevant code is:
return Content(someString, "text/xml", Encoding.UTF8);
Even though UTF-8 is specified, the …
1
vote
4answers
425 views
UTF-16 to ASCII conversion in Java
Hi,
Having ignored it all this time, I am currently forcing myself to learn more about unicode in Java. There is an exercise I need to do about converting a UTF-16 string to 8-b …
1
vote
1answer
365 views
Using PHP’s SoapClient to send UTF-16 Character to WCF Service
Hello all,
My PHP application is taking user input and sending it to a WCF Web Service.
Sometimes my users copy and paste from Word and get UTF-16 Characters into their message su …
0
votes
3answers
129 views
How can I identify different encodings without the use of a BOM?
I have a file watcher that is grabbing content from a growing file encoded with utf-16LE. The first bit of data written to it has the BOM available -- I was using this to identify …
0
votes
1answer
47 views
What is the easiest way to search and replace in text files encoded UTF-16?
I'm trying to update a series of xml files by changing names that they reference. I have a table of names that have changed, column for the current name and a column for the name t …
3
votes
3answers
133 views
How can I check for the existence of UTF-16 filenames in Perl?
I have a textfile encoded in UTF-16. Each line contains a number of columns separated by tabs. For those who care, the file is a playlist TXT export from iTunes. Column #27 cont …
4
votes
4answers
560 views
Can I make git recognize a UTF-16 file as text?
I'm tracking a Virtual PC virtual machine file (*.vmc) in git, and after making a change git identified the file as binary and wouldn't diff it for me. I discovered that the file …
4
votes
4answers
1k views
Difference between Big Endian and little Endian Byte order
what is the difference between Big Endian byte order and little Endian Byte order.
These both are related to Unicode and UTF16
where we use this?
6
votes
9answers
684 views
Should UTF-16 be considered harmful?
I'm going to ask what is probably quite a controversial question: "Should one of the most
popular encodings, UTF-16, be considered harmful?"
Why do I ask this question?
How many …
0
votes
1answer
404 views
PHP UTF-16 to ASCII conversion
Consider the following string. Its encoded in UTF-16-LE and saved into a PHP variable. I failed to get either mbstring or iconv to replace the ' with single quote. What would …
0
votes
4answers
231 views
Bug with Python UTF-16 output and Windows line endings?
With this code:
test.py
import sys
import codecs
sys.stdout = codecs.getwriter('utf-16')(sys.stdout)
print "test1"
print "test2"
Then I run it as:
test.py > test.txt
In …
1
vote
5answers
232 views
What could go wrong in switching HTML encoding from UTF-8 to UTF-16?
What are the implications of a change from UTF-8 to UTF-16 for HTML encoding? I would like to know your thoughts on the issue. Are there things I need to think of before making s …
0
votes
2answers
136 views
Is the XML declaration tag case sensitive?
I have what is probably a really simple, studid question but I can't find an answer to it anywhere and I need to be pretty sure about this.
I have various XML files from various v …
