0
votes
0answers
108 views

How to decode unicode special character stored by SAP on SQL Server 2008?

I've a web service reading data from a table T on SQL Server 2008. Table T is populated by an SAP job. When selecting from the table on SQL client and our web service, we see special characters 'É' ...
0
votes
1answer
118 views

How to decode unicode HTML by JavaScript?

How to use JavaScript to decode from: \u003cb\u003estring\u003c/b\u003e to <b>string</b> (I searched in internet, there are some site with same question, such as: Javascript html ...
1
vote
1answer
43 views

Is there any solution for unicode numeric symbols conversion to actual characters

I am about to pull my hairs on this issue. If some one has any solution. I have an html string $html = '<div id="main">What is going on ...
1
vote
2answers
490 views

'ascii' codec can't encode character at position * ord not in range(128)

There are a few threads on stackoverflow, but i couldn't find a valid solution to the problem as a whole. I have collected huge sums of textual data from the urllib read function and stored the same ...
0
votes
1answer
131 views

Decode unicode values in Perl

Trying to decode lots of information which is returned to be from a server. Effectively I'm just printing out returned data, the data itself is correct, except I'm getting '\u003c' instead of '<', ...
0
votes
1answer
113 views

Difference between Unicode and decoded strings [closed]

Are decoded strings without additional attributes and Unicode interchangeable? Update: Does it make a difference if I write subroutine expects decoded strings. or write subroutine expects ...
3
votes
1answer
1k views

PHP unicode decode

I have a PHP script that read string data from .xls file (via PHP Excel Reader). But some special characters it returns in unicode encoded format. For example, instead of "é" returns "\xe9". Is ...
4
votes
3answers
254 views

string.decode() vs. unicode(string)

myString = 'éíěřáé' I need to decode this string to unicode. Is there any difference between folowing usages and between these two methods in general? myString.decode(encoding='UTF-8', ...
2
votes
5answers
524 views

I don't understand encode and decode in Python (2.7.3)

I tried to understand by myself encode and decode in Python but nothing is really clear for me. str.encode([encoding,[errors]]) str.decode([encoding,[errors]]) First, I don't understand the need ...
2
votes
1answer
5k views

UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 0: ordinal not in range(128)

I am working google appengine python 2.5. I am experiencing unicodedecoderror on following code because myuser name has following value userName = unicode(userName).encode('utf-8') # äºï¼égãwmj ...
8
votes
2answers
265 views

Unicode and `decode()` in Python

>>> a = "我" # chinese >>> b = unicode(a,"gb2312") >>> a.__class__ <type 'str'> >>> b.__class__ <type 'unicode'> # b is unicode ...
4
votes
1answer
773 views

WireShark - Can I decode UTF-8 data in the packets?

In Wireshark, how can I see non-ASCI characters in a packet? some of my data in the packets is in the UTF-8 encoding and I would like Wireshark to recognize it. Is there a plugin for it? I found ...
-11
votes
3answers
975 views

Decode SHA1 using javascript? [duplicate]

Possible Duplicate: Is it possible to reverse a sha1? Decode sha1 string to normal string Convert SHA1 back to string I found this http://www.webtoolkit.info/javascript-sha1.html to ...
5
votes
1answer
3k views

UnicodeDecodeError: 'charmap' codec can't decode byte X in position Y: character maps to <undefined>

I'm trying to get a Python 3 program to do some manipulations with a text file filled with information. However, when trying to read the file I get the following error: Traceback (most recent call ...
0
votes
3answers
635 views

how to get my character?

my system:xp+python27 the codec, xp gbk;python 27 ascii >>> a = '你好' >>> a '\xc4\xe3\xba\xc3' >>> print a 你好 >>> '\xc4\xe3\xba\xc3'.decode('gbk') ...
4
votes
2answers
265 views

PHP string comparison between two different types of encoding

I am attempting to match a string I know to a web page title in php. I have the following string: ℛobinhood I have a page title that looks like this: ℛobinhood but is actually encoded like this ...
0
votes
0answers
197 views

How to decode (\u00D8 \u00A7 \u00D) in php [duplicate]

Possible Duplicate: How to decode Unicode escape sequences like “\u00ed” to proper UTF-8 encoded characters? I have requested a URL using REST in PHP and I got this result ...
0
votes
1answer
2k views

How to decode something beginning with “\u” with PHP

How to decode something beginning with "\u" with PHP e.g. \u4f60\u5df2\u7ecf\u6dfb\u52a0\u4e86\u6b64\u8bdd\u9898 thank you
-2
votes
3answers
228 views

Python decode text to ascii

How to decode unicode string like this: what%2527s%2bthe%2btime%252c%2bnow%253f into ascii like this: what's+the+time+now
1
vote
2answers
664 views

How To Convert JSON String That Contains Encoded Unicode

Could anyone tell me how to convert the following json object string, which contains encoded unicode characters (Chinese in this case) to human readable one using c# in asp.net? ...
1
vote
1answer
784 views

C++ embedded python PyArg_ParseTuple fails with string args

I'm trying to add embedded python to a OpenGL/SDL application. So far everything works fine, like entering a string via SDL keyboard events and executing it with the embedded python interpreter. I'm ...
1
vote
1answer
857 views

UnicodeDecodeError: 'gbk' codec can't decode bytes

I'm trying to load an object (of a custom class Area) from a file using pickler. I'm using python 3.1. The file was made with pickle.dump(area, f) I get the following error, and I would like help ...
1
vote
3answers
926 views

Confusion with unicode in Python

As part of a Django site, users can enter street names and the entry will be added to a google maps geocoding link. Everything works well, until users enter special characters. I would like to ...
9
votes
3answers
14k views

UnicodeDecodeError, invalid continuation byte

Why is the below item failing? and why does it succeed with "latin-1" codec? o = "a test of \xe9 char" #I want this to remain a string as this is what I am receiving v = o.decode("utf-8") results ...
0
votes
1answer
346 views

Python : sending mail through gmail issue

I am trying to send an email (through gmail) using python script that someone once wrote on this site, but I'm getting an error: UnicodeDecodeError: 'utf8' codec can't decode byte 0xe8 in position 2: ...
2
votes
2answers
408 views

What encoding does Outlook use for plain text messages?

I need to decode e-mails saved from Outlook as Text Only. Unfortunately they're not in plain ISO-8859-1 since they contain special "smart quote" characters. Does the codepage used by Outlook have a ...
2
votes
1answer
135 views

Decoding legacy binary format

I am trying to figure out how to decode a "legacy" binary file that is coming from a Windows application (anno ±1990). Specifically I have a trouble to understand what specific encoding is used for ...
0
votes
2answers
3k views

Read unicode file in php

How to read Unicode file in php. I have used file_get_contents() function, but after reading file content, I am getting content in decode format(not readable format) Please provide me your ...
0
votes
0answers
479 views

How to convert string like “\u0131” , “\u011f”

I get string in php script. like "A\u011fr\u0131" how to conver it to normal string with umlauts ?
1
vote
2answers
211 views

Dealing with multi-language directories (Python)

I'm trying to open a file and I just realized that py is having trouble with my username (It's in Russian). Any suggestions on how to properly decode/encode this to make idle happy? I'm using py ...
3
votes
2answers
879 views

Python file input string: how to handle escaped unicode characters?

In a text file (test.txt), my string looks like this: Gro\u00DFbritannien Reading it, python escapes the backslash: >>> file = open('test.txt', 'r') >>> input = file.readline() ...
3
votes
4answers
2k views

Best way to decode hex sequence of unicode characters to string

I'm working with C# .Net I would like to know how to convert a Unicode form string like "\u1D0EC" (note that it's above "\uFFFF") to it's symbol... "𝃬" Thanks For Advance!!!
1
vote
2answers
2k views

Convert from hex string to unicode

How can i convert the 'dead' string to an unicode string u'\xde\xad'? Doing this: from binascii import unhexlify out = ''.join(x for x in [unhexlify('de'), unhexlify('ad')]) creates a <type ...
0
votes
1answer
1k views

Request Object not decoding UrlEncoded

C#, ASP.NET 3.5 I create a simple URL with an encoded querystring: string url = "http://localhost/test.aspx?a=" + Microsoft.JScript.GlobalObject.escape("áíóú"); which becomes nicely: ...
0
votes
4answers
3k views

utf-8 decoding problem in php

I got a .vcf file with parts encoded as UTF-8: CATEGORIES;CHARSET=UTF-8:Straße & –dienste Now "–" should be a "-" and "Straße" should convert to "Straße". I tried utf8_decode() iconv() ...
3
votes
4answers
9k views

Unable to decode unicode string in Python 2.4

This is in python 2.4. Here is my situation. I pull a string from a database, and it contains an umlauted 'o' (\xf6). At this point if I run type(value) it returns str. I then attempt to run ...
0
votes
1answer
1k views

Python: Use the codecs module or use string function decode?

I have a text file that is encoded in UTF-8. I'm reading it in to analyze and plot some data. I would like the file to be read in as ascii. Would it be best to use the codecs module or use the ...
0
votes
3answers
693 views

How do I safely decode a degrees symbol in a wxPython app?

I have a debug app I've been writing which receives data from a C-based process via UDP. One of the strings sent to me contains a ° character - Unicode U+00B0 (which incidentally breaks the ...