You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Having following characters: 123456789 aceflnmoprstu (which can be acheved one by one) we are able to get other lower/upper case letters and some characters without using deprecated methods like italics. Deprecated methods was used in jsfuck for size-optimizations. To avoid them we can use escape and unescape methods - technique base on this question and answer. We can do it by e.g. for letter C (which has hexadecimal escape code 43) as follows (we show 5 steps of formula evolution towards jsf)
Using this approach we have access to: !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_ abcdefghijklmnopqrstuvwxyz{|}~ + tilde character and more. Using this technique we don't need to use String.fromCharCode (which in old approach forced to use deprecated methods like 'italics' or 'fontcolor' etc.)
For letter "C" we can also use below shortcut based on escape only discovered by Siguza
(un)escape - gate for all
Having following characters:
123456789 aceflnmoprstu
(which can be acheved one by one) we are able to get other lower/upper case letters and some characters without using deprecated methods like italics. Deprecated methods was used in jsfuck for size-optimizations. To avoid them we can useescape
andunescape
methods - technique base on this question and answer. We can do it by e.g. for letterC
(which has hexadecimal escape code 43) as follows (we show 5 steps of formula evolution towards jsf)Using this approach we have access to:
!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_ abcdefghijklmnopqrstuvwxyz{|}~
+ tilde character and more. Using this technique we don't need to useString.fromCharCode
(which in old approach forced to use deprecated methods like 'italics' or 'fontcolor' etc.)For letter "C" we can also use below shortcut based on
escape
only discovered by SiguzaGive "checbox" which will alow to compile using deconverter based on above non-deprecated functions
List of all characters:
The text was updated successfully, but these errors were encountered: