if you quote PW's post it turns out each line of symbols is separated, and does not break up into sequences of three symbols.
I was assuming it was done automatically by a word processor or for presentation rather than being meaningful in any way.
Theta, Omega, Wave, Triangle, and Phi.
The triangle is probably delta and wave is lambda
Been a while since I last saw you in an ER thread. Planning on having a crack at the cipher and rejoining with an AoW?
I decided to try using each character as base-5 numbers. Due to Java apparently not liking the greek alphabet I used MS Word to replace all the characters in my triplet sequence with letters from the regular alphabet.
Δ = A = 0
θ = B = 1
λ = C = 2
Ф = D = 3
Ω = E = 4
I then shoved it into the following tool I made:
import java.util.*;
import java.io.File;
import java.io.PrintWriter;
import java.io.IOException;
public class Cipher
{
public static void main(String[] args) throws IOException
{
String triplet;
int clearnum;
Scanner fileReader = new Scanner(new File("Code.txt"));
PrintWriter writer = new PrintWriter("Clearnum.txt", "UTF-8");
HashMap<Character, Integer> key = new HashMap<Character, Integer>();
key.put('A', 0);
key.put('B', 1);
key.put('C', 2);
key.put('D', 3);
key.put('E', 4);
while(fileReader.hasNextLine())
{
triplet = fileReader.nextLine();
clearnum = 0;
for(int i = 0; i < 3; i++)
{
clearnum += key.get(triplet.charAt(2 - i)) * Math.pow(5, i);
}
writer.println(clearnum);
}
fileReader.close();
writer.close();
}
}
This converts it according to the assumptions I made.
The result is as follows:
49
50
9
102
51
31
35
115
114
32
50
37
77
81
123
65
63
35
81
97
1
13
94
108
94
0
65
40
21
95
65
109
1
63
51
77
119
97
52
31
115
41
17
105
63
21
52
28
5
34
40
79
107
40
3
59
103
89
49
13
4
35
40
77
58
65
109
0
119
51
21
38
97
51
34
63
41
56
109
40
100
59
31
69
38
79
124
40
3
59
103
94
49
94
4
65
63
24
95
65
109
4
115
114
77
38
97
114
31
119
48
59
109
40
34
50
105
94
25
52
120
65
34
119
79
124
115
2
56
5
89
108
13
4
65
37
70
117
51
72
65
5
124
119
54
24
63
13
4
69
119
78
99
65
26
0
40
48
56
105
115
79
52
29
33
94
108
13
0
65
40
70
117
52
73
50
32
124
119
51
24
38
11
4
50
44
20
58
65
26
1
63
41
82
95
96
40
117
65
13
62
117
103
89
49
13
4
65
119
70
117
52
97
65
103
120
40
51
24
40
94
1
65
38
77
58
65
109
4
40
48
56
109
40
31
50
26
94
117
52
106
65
34
94
49
13
0
65
38
56
95
94
69
117
65
31
40
41
50
117
35
115
56
40
100
84
109
13
56
22
65
94
108
94
0
65
115
56
99
13
65
29
35
31
40
50
17
94
38
109
13
17
117
26
46
49
13
0
65
115
59
58
11
65
25
65
30
40
59
25
50
119
31
35
18
34
94
I hope it is somewhat useful for something. Even if that something is discrediting my triplet theory >__<