- Joined
- Oct 6, 2017
- Messages
- 11
- Reaction score
- 2
- Points
- 1
Hello,
Peace from the hell!
Title:
[Android] [MOD] [.smali] How to encode or decode text into Unicode UTF-16
What's Unicode UTF-16?
The Unicode UTF-16 is an character encoding language!
Why to use?
To encode the texts or characters that's are unreadable!
Examples:
#1
Before:
After:
--------------------------------------------------
#2
Before:
After:
--------------------------------------------------
#3
Before:
After:
--------------------------------------------------
How to do?
just visit:
Where to put?
just paste into smali file where's strings life!
Examples:
#1
#2
Hope i maked it clear!
Any question are welcome!
Good Luck!
Peace from the hell!
Title:
[Android] [MOD] [.smali] How to encode or decode text into Unicode UTF-16
What's Unicode UTF-16?
The Unicode UTF-16 is an character encoding language!
Why to use?
To encode the texts or characters that's are unreadable!
Examples:
#1
Before:
Code:
Hello!
After:
Code:
\u0048\u0065\u006c\u006c\u006f!
--------------------------------------------------
#2
Before:
Code:
This APK Moded by: [MENTION=43340]mribraqdbra[/MENTION]
After:
Code:
\u0054\u0068\u0069\u0073 \u0041\u0050\u004b \u004d\u006f\u0064\u0065\u0064 \u0062\u0079\u003a \u0040\u006d\u0072\u0069\u0062\u0072\u0061\u0071\u0064\u0062\u0072\u0061
--------------------------------------------------
#3
Before:
Code:
ありがとうございます
After:
Code:
\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059
--------------------------------------------------
How to do?
just visit:
Code:
https://www.branah.com/unicode-converter
Where to put?
just paste into smali file where's strings life!
Examples:
#1
Code:
const-string v4, "\u0054\u0068\u0069\u0073 \u0041\u0050\u004b \u004d\u006f\u0064\u0065\u0064 \u0062\u0079\u003a \u0040\u006d\u0072\u0069\u0062\u0072\u0061\u0071\u0064\u0062\u0072\u0061"
#2
Code:
const-string v4, "\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\"
Hope i maked it clear!
Any question are welcome!
Good Luck!
Last edited by a moderator: