Jump to content

What code is this?


Delta
 Share

Recommended Posts

What code is this? hex?

\xF4\xBE\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00

and is there a way to convert it back and forth between plain text?

[size="1"]Please stop confusing "how to" with "how do"[/size]

Link to comment
Share on other sites

What code is this? hex?

\xF4\xBE\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00

and is there a way to convert it back and forth between plain text?

This will convert it to the integer value. Substitute Chr for Int if you want characters.

$x = StringSplit(StringTrimLeft("\xF4\xBE\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00",1),"\")
for $y = 1 to $x[0]
    ConsoleWrite(Int("0"&$x[$y])& @CRLF)
Next
Edited by eltorro
Link to comment
Share on other sites

  • Moderators

$sConvert = BinaryToString("0x" & StringRegExpReplace("\xF4\xBE\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00", "\\x", ""))
MsgBox(0, 0, $sConvert)
$sConvertBack = StringTrimLeft(StringToBinary($sConvert), 2)
MsgBox(0, 0, $sConvertBack)oÝ÷ جµ©è¶Ú,!£hv­Â+a¢ëe¢lØ­N¬Æ§¢Ø^¯²¶è­{¶¥G¢·¬mçè­æ®¶­sbb33c·46öçfW'BÒ&æ'Fõ7G&ærgV÷C³gV÷C²fײ7G&æu&VtW&WÆ6RgV÷C²b3#·cBb3#·$Rb3#·2b3#·b3#·b3#·b3#·b3#·b3#·b3#·b3#·b3#·b3#·b3#·b3#·b3#·gV÷C²ÂgV÷C²b3#²b3#·gV÷C²ÂgV÷C²gV÷C²¤×6t&÷ÂÂb33c·46öçfW'B¢b33c·46öçfW'D&6²ÒgV÷C²b3#·gV÷C²fײ7G&æuG&Õ&vB7G&æu&VtW&WÆ6R7G&æuG&ÔÆVgB7G&æuFô&æ'b33c·46öçfW'"ÂgV÷C²ç³'ÒgV÷C²ÂgV÷C²b3#³b3#²b3#·gV÷C²Â"¤×6t&÷ÂÂb33c·46öçfW'D&6²

Edited by SmOke_N

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...