0

I have a javascript code but she is encoded i wanna to decode it beacouse i gonna to change the functions so i dont have any idea how is she encoded and how to decode it.

Here is a part of code

function updateTitle(_0x3c9303) {
document[_0x305d('0x1b')] = _0x3c9303;
}

I tryed with a loot of online decoders but i dont get any results.

I dont have any other idea what type of encode is this _0x3c9303 i searched in google and in some forums but i dont get anyresults.

1 Answers1

0

Those are Hexidecimal-codepoint Unicode characters encoded in UTF-16LE: _崰('0x1b') = _錼;

The 0x1b appears to be a hexadecimal number in JavaScript that equates to either the number 27 or the esc key.

There are a number of websites that will help you decode this encoding. Google is probably your best bet for that.

This is the site that I used to decode the individual characters:

https://www.mobilefish.com/services/latin_utf_base64_to_hex/latin_utf_base64_to_hex.php#text_hex_output

Randy Casburn
  • 13,840
  • 1
  • 16
  • 31