What type of encryption is this _0x6c9509 , I would like to use it in one of my projects I found it in a minified js file but I have no idea what it is.
Any hints are appreciated it.
Thank you.
What type of encryption is this _0x6c9509 , I would like to use it in one of my projects I found it in a minified js file but I have no idea what it is.
Any hints are appreciated it.
Thank you.
That’s just hexadecimal, like 00
= 0 and FF
= 255.
The value of 6C9509
is 7,116,041.
https://www.rapidtables.com/convert/number/hex-to-decimal.html
You can also use hexadecimal directly in JavaScript as a number:
Thank you.