Spiel mal ein wenig mit dem Beispiel und Du bekommst das Feeling:
Dim a As String
Dim b As String
a = „Hi“
b = „Ai“
Dim c As Byte
Dim d As Byte
Dim e As Byte
c = Asc(Mid(a, 1, 1))
d = Asc(Mid(b, 1, 1))
e = c Xor d ’ H Xor A
MsgBox Chr(e) ’ ergebniss ausgeben
MsgBox Chr(e Xor d) ’ Und Zurückwandeln und Ausgeben