Java encryption (UNICODE Example)

// encrypted with www.stringencrypt.com (v1.0.0) [Java]
// myString = "Encryption in Java"
String myString = "\u1197\u11AB\u11AF\u119D\u1197\u119D\u1194\u119E" +
                  "\u11A5\u11A3\u1154\u119A\u1198\u1155\u117A\u118E" +
                  "\u1194\u1180";
 
for (int RLXWE = 0, Chdlo = 0; RLXWE < 18; RLXWE++)
{
  Chdlo = myString.charAt(RLXWE);
  Chdlo ++;
  Chdlo ^= 0xFFFF;
  Chdlo -= 0x7AC7;
  Chdlo -= RLXWE;
  Chdlo ++;
  Chdlo -= RLXWE;
  Chdlo --;
  Chdlo ^= 0x73E5;
  Chdlo ^= RLXWE;
  Chdlo &= 0xFFFF;
  myString = myString.substring(0, RLXWE) + (char)(Chdlo) + myString.substring(RLXWE + 1);
}
 
System.out.println(myString);

Java encryption (ANSI Example)

// encrypted with www.stringencrypt.com (v1.0.0) [Java]
// myString = "Java Encryption"
String myString = "\u0032\u001B\u0006\u001B\u005C\u0037\u000E\u0019" +
                  "\u000A\u0003\u000C\u0008\u0013\u000D\u000E";
 
for (int qwxLX = 0, OXaYM = 0; qwxLX < 15; qwxLX++)
{
  OXaYM = myString.charAt(qwxLX);
  OXaYM += qwxLX;
  OXaYM += 0xCB;
  OXaYM -= qwxLX;
  OXaYM ^= 0xFF;
  OXaYM -= 0xB8;
  OXaYM &= 0xFF;
  myString = myString.substring(0, qwxLX) + (char)(OXaYM) + myString.substring(qwxLX + 1);
}
 
System.out.println(myString);