English 中文(简体)
文本编码编码编码编码编码编码
原标题:Text code decoding

我是英文/西班牙文/英文译员。 我的工作是,我必须翻译从手机发送的西班牙文文本信息。 其中一些已编入法典。 我假设每个数字是一封信。 是否有任何网站可以找到如何贬低该守则的信息?

例如,第一个信息是:

0x69 ox61 0x6e 0x70 0x72 0x2e 0x6e 0x65 0x74 0x2f 0x3f 0x64 0x34 0x39 0x31 0x66 0x30 0x37 0x35 0x35 0x39 0x39 0x62 0x36 0x31 0x31 0x31 0

感谢你提供的任何帮助。

Diana

问题回答

这里有Hex-to-ASCII decoder,可在未经修改的情况下采用输入格式(将产品输入“0x... notation”盒和新闻压缩机)。

BTW为了帮助你理解:这些“数据集”是按字母顺序排列的(基准16)。 0x 序号是用C方案拟订语言(以及许多其他语文)书写六分数的方法。 因此,现在你有一系列 by。 因此需要通过一套称为“契约人编码”的规则来解释这些规则的性质。 这一点必须发生在各地的电脑中。 不幸的是,有许多不同的不兼容的特性。 其中大多数国家同意如何逐条解释第一批128项价值(美国-美国国际船舶和公司编码系统)。 但是,如果你处理西班牙文本的话,你会很快碰到ASCII无法代表的特性。 然后,选择正确的编码就变得很重要;我怀疑有转换海产的在线工具,允许你选择编码。

http://home2.paulschou.net/tools/xlate/“rel=“nofollow noreferer”>。

ianpr.net/?d491f0785529b611

这对我来说,就象阿西文法典。

Something such asianpr.net/?d491f0785529b611x00

:

夏令:

a = "0x69 0x61 0x6e 0x70 0x72 0x2e 0x6e 0x65 0x74 0x2f 0x3f 0x64 0x34 0x39 0x31 0x66 0x30 0x37 0x38 0x35 0x35 0x32 0x39 0x62 0x36 0x31 0x31 0x00"
b = ""
for  i in a.split():
  b = b + chr(int(i[2]+i[3], 16))
print b 




相关问题
Mojarra for JSF Encoding

Can anyone teach me how to use mojarra to encode my JSF files. I downloaded mojarra and expected some kind of jar but what i had downloaded was a folder of files i don t know what to do with

encoding of file shell script

How can I check the file encoding in a shell script? I need to know if a file is encoded in utf-8 or iso-8859-1. Thanks

Using Java PDFBox library to write Russian PDF

I am using a Java library called PDFBox trying to write text to a PDF. It works perfect for English text, but when i tried to write Russian text inside the PDF the letters appeared so strange. It ...

what is encoding in Ajax?

Generally we are using UTF-8 encoding standard for sending the request for every language. But in some language this encoding standard is not working properly,then in that case we are using ISO-8859-1....

Encoding of window.location.hash

Does window.location.hash contain the encoded or decoded representation of the url part? When I open the same url (http://localhost/something/#%C3%BC where %C3%BCtranslates to ü) in Firefox 3.5 and ...

Auth-code with A-Za-z0-9 to use in an URL parameter

As part of a web application I need an auth-code to pass as a URL parameter. I am currently using (in Rails) : Digest::SHA1.hexdigest((object_id + rand(255)).to_s) Which provides long strings like : ...

热门标签