Advertisement
ZeekoSec

ASCII CRYPTER [CODE SNIP]

Jan 24th, 2015
517
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 1.84 KB | None | 0 0
  1. Dim a, b, c, d, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, 貓, č, ມ, δ, 이, 馬, 亞, ǎ, ձ, ù, Ƹ, 從, ř, 彡, 洲, 誤, म, ş, 頭, ա, 物, ຍ, ö, ஜ, σ, ψ As String
  2.         Dim encrypt As String
  3.         a = "a"
  4.         b = "b"
  5.         c = "c"
  6.         d = "d"
  7.         f = "f"
  8.         g = "g"
  9.         h = "h"
  10.         i = "i"
  11.         j = "j"
  12.         k = "k"
  13.         l = "l"
  14.         m = "m"
  15.         n = "n"
  16.         o = "o"
  17.         p = "p"
  18.         q = "q"
  19.         r = "r"
  20.         s = "s"
  21.         t = "t"
  22.         u = "u"
  23.         v = "v"
  24.         w = "w"
  25.         x = "x"
  26.         y = "y"
  27.         z = "z"
  28.         encrypt = Input.Text
  29.         encrypt = Replace(encrypt, a, "貓")
  30.         encrypt = Replace(encrypt, b, "č")
  31.         encrypt = Replace(encrypt, c, "ມ")
  32.         encrypt = Replace(encrypt, d, "δ")
  33.         encrypt = Replace(encrypt, f, "馬")
  34.         encrypt = Replace(encrypt, g, "亞")
  35.         encrypt = Replace(encrypt, h, "ǎ")
  36.         encrypt = Replace(encrypt, i, "ձ")
  37.         encrypt = Replace(encrypt, j, "ù")
  38.         encrypt = Replace(encrypt, k, "Ƹ")
  39.         encrypt = Replace(encrypt, l, "從")
  40.         encrypt = Replace(encrypt, m, "ř")
  41.         encrypt = Replace(encrypt, n, "彡")
  42.         encrypt = Replace(encrypt, o, "洲")
  43.         encrypt = Replace(encrypt, p, "誤")
  44.         encrypt = Replace(encrypt, q, "म")
  45.         encrypt = Replace(encrypt, r, "ş")
  46.         encrypt = Replace(encrypt, s, "頭")
  47.         encrypt = Replace(encrypt, t, "ա")
  48.         encrypt = Replace(encrypt, u, "物")
  49.         encrypt = Replace(encrypt, v, "ຍ")
  50.         encrypt = Replace(encrypt, w, "ö")
  51.         encrypt = Replace(encrypt, x, "ஜ")
  52.         encrypt = Replace(encrypt, y, "σ")
  53.         encrypt = Replace(encrypt, z, "ψ")
  54.         Output.Text = encrypt
  55.     End Sub
  56. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement