The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
88 views

How to save ASCII as Unicode (UTF-16LE) in C/C++ (cpp)?

As you may remember, windows notepad has encoding ability in "Save As.." function: as ASCII(default), UTF-8, Unicode and Big Endian. I need to make a program, which does smth with text of ASCII .txt ...
0
votes
1answer
151 views

Using Rails to Encode Text to UTF-16LE for Windows

I have a PLC application that requires the Unicode format of UTF-16LE to support accented characters. I build the text and convert it with: str = Iconv.conv("utf-16le", "utf-8", str) Then I output ...
1
vote
0answers
90 views

Stop response object from encoding already encoded bytes in Java [closed]

I have a function which returns a array of "UTF-16LE" decoded bytes,(with starting BOM) protected byte[] convert(String reportHTML) throws BuilderException, RenderingException, IOException { ...
0
votes
0answers
94 views

Localization in iOS and file format

I have a small question concerning the format of ".strings" files. in the fllowing link https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/LoadingResources/Strings/Strings.html it ...
0
votes
1answer
313 views

notepad ++ shows ucs-2LE while ubuntu FILE [file] shows UTF-16LE, I am confused?

I am trying to convert the file generated from a mssql to utf-8. When I open the output of he mssql using notepad++ in windows server 2003 recognises the file as UCS-2LE I copied the file to a Ubuntu ...
0
votes
2answers
142 views

Java UTF-16LE Weird Error That Stumped My Professor

As described above, I'm having an issue with UTF-16LE in Java. When I run my code, it usually encrypts, decrypts, and prints the message correctly. Sometimes it loses two of the encrypted characters ...
0
votes
2answers
321 views

Python network convert byte

I'm trying to implement a CRC verification on a network based protocol. CRC calculation is done via the PyCRC lib. PyCRC will generate a checksum for the given packet and return a result like this: ...
1
vote
3answers
1k views

How to deal with UTF-16LE encoded text file using Java? or convert it to ASCII?

I am sorry if it has been asked before. I am trying to process a text file using Java. The text file is exported from MS SQLServer. When I open it in PSPad (sort of text editor in which I can view any ...
3
votes
1answer
2k views

Ruby: how to save file to UTF-16 Little Endian

I want to save ® into a txt file with UTF-16 Little Endian, I tested in some ways 1.The encoding below is UTF-8 $RegisterMark=[174].pack('U*') file = File.new("C:/Output.txt","w") file.puts ...
2
votes
1answer
917 views

How do I work with UTF-16LE source code in Ruby?

I have the following file named test.rb encoding in UTF-16LE # encoding: UTF-16LE test = "test!" p test Running it with the following command produces no results ruby ./test.rb What am I ...