There is no simple answer to this question. Each encoding or encryption will have an associated decoding/decryption. In order to figure out the original message you need to at least know how it was encoded. If it was encrypted, then you will likely also need additional information such as encryption keys.
Without knowing how it was encoded or what information it contains, no. At first glance it appears to be an MD5 hash, which is (practically) impossible to convert back into its original form.
In order to convert any code to English, you need to know what each symbol stands for within the code. Typically, there is a legend that explains what each letter actually stands for and you can decrypt it from there.
A common term for this is to decrypt the text.
ibrahem.2008@hotmail.com
A program called a compiler, or sometimes an assembler (depending on the programming language) does this for you. You write the source code, then invoke the program that will convert this into machine language.
The usual reason would be to encrypt and decrypt code
You cannot convert machine code to high-level language. It's a one-way process. The best you can do is disassemble a machine code program, producing code similar to assembly language.
basically compiler is that convert an object code in to machine code and machine code is directly understood by a computer. assembler and interpreter are the examples of compilers. assembler is used to convert object code of assmebly language in machine code.
Not only can we but we have to! Machine code is the only language understood by the computer, thus all languages, both low and high level, must be converted to machine code in order to execute. Most compiled languages can produce low-level symbolic code (assembly language), but not all, especially those that compile to byte code rather than machine code. However, all code has to be compiled or interpreted to machine code at some point and machine code can be disassembled to produce low-level symbolic code.
With a compiler, which is a program that "knows" how to transform the programming language logic in to machine code and make it perform from that.
"http://wiki.answers.com/Q/Free_software_to_convert_hex_code_into_assembly_language"
compiler is complex software compounding of scanner,parser,intermediate code generator , object code generator etc. Actually its tasks is to convert one language to another target language. then it may be possible that source language may be c# ,java , C source code and target language one of them or assembly language code.