Text 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,64 @@
1
+ module Text
2
+ module Figlet
3
+
4
+ class Smusher
5
+
6
+ def initialize(font)
7
+ @font = font
8
+ end
9
+
10
+ def [](result)
11
+ todo = false
12
+
13
+ @font.height.times do |j|
14
+ result[j] = result[j].sub(pattern) { todo, x = callback(todo, $1, $2); x }
15
+ end
16
+ @font.height.times do |j|
17
+ result[j] = if todo
18
+ result[j].sub(/\s\x00(?!$)|\x00\s/, '').sub(/\x00(?!$)/, '')
19
+ else
20
+ result[j].sub(/\x00(?!$)/, '')
21
+ end
22
+ end
23
+ end
24
+
25
+ def pattern
26
+ @pattern ||= /([^#{@font.hard_blank}\x00\s])\x00([^#{@font.hard_blank}\x00\s])/
27
+ end
28
+
29
+ def symbols
30
+ @@symbols ||= {
31
+ 24 => '|/\\[]{}()<>',
32
+ 8 => {'[' => ']', ']' => '[', '{' => '}', '}' => '{', '(' => ')', ')' => '('},
33
+ 16 => {"/\\" => '|', "\\/" => 'Y', '><' => 'X'}
34
+ }
35
+ end
36
+
37
+ def old_layout?(n)
38
+ @font.old_layout & n > 0
39
+ end
40
+
41
+ def callback(s, a, b)
42
+ combined = a + b
43
+
44
+ if old_layout?(1) && a == b
45
+ return true, a
46
+ elsif old_layout?(2) && ('_' == a && symbols[24].include?(b) || '_' == b && symbols[24].include?(a))
47
+ return true, a
48
+ elsif old_layout?(4) && ((left = symbols[24].index(a)) && (right = symbols[24].index(b)))
49
+ return true, (right > left ? b : a)
50
+ elsif old_layout?(8) && (symbols[8].has_key?(b) && symbols[8][b] == a)
51
+ return true, '|'
52
+ elsif old_layout?(16) && symbols[16].has_key?(combined)
53
+ return true, symbols[16][combined]
54
+ elsif old_layout?(32) && (a == b && @font.hard_blank == a)
55
+ return true, @font.hard_blank
56
+ else
57
+ return s, "#{a}\00#{b}"
58
+ end
59
+ end
60
+
61
+ end
62
+
63
+ end # module Figlet
64
+ end # module Text
@@ -0,0 +1,68 @@
1
+ module Text
2
+ module Figlet
3
+
4
+ class Typesetter
5
+
6
+ def initialize(font, options = nil)
7
+ @font = font
8
+ @options = options || {}
9
+ @smush = @options.has_key?(:smush) ? @options[:smush] : true
10
+ end
11
+
12
+ def [](str)
13
+ result = []
14
+ str.length.times do |i|
15
+ char = str[i]
16
+ unless @font.has_char?(char)
17
+ if @font.has_char?(0)
18
+ char = 0
19
+ else
20
+ next
21
+ end
22
+ end
23
+ @font.height.times do |j|
24
+ line = @font[char][j]
25
+ if result[j].nil?
26
+ result[j] = line
27
+ else
28
+ result[j] = @font.right_to_left?? (line + result[j]) : (result[j] + line)
29
+ end
30
+ end
31
+ if @font.old_layout > -1 && i > 0
32
+ diff = -1
33
+ @font.height.times do |j|
34
+ if match = /\S(\s*\x00\s*)\S/.match(result[j])
35
+ len = match[1].length
36
+ diff = (diff == -1 ? len : min(diff, len))
37
+ end
38
+ end
39
+ diff -= 1
40
+ if diff > 0
41
+ @font.height.times do |j|
42
+ if match = /\x00(\s{0,#{diff}})/.match(result[j])
43
+ b = diff - match[1].length
44
+ result[j] = result[j].sub(/\s{0,#{b}}\x00\s{#{match[1].length}}/, "\0")
45
+ end
46
+ end
47
+ end
48
+ smush[result] if @smush
49
+ end
50
+ end
51
+ return result.join("\n").gsub(/\0/, '').gsub(@font.hard_blank, ' ')
52
+ end
53
+
54
+
55
+ private
56
+
57
+ def min(a, b)
58
+ a > b ? b : a
59
+ end
60
+
61
+ def smush
62
+ @smusher ||= Smusher.new(@font)
63
+ end
64
+
65
+ end
66
+
67
+ end # module Figlet
68
+ end # module Text
@@ -0,0 +1,65 @@
1
+ #
2
+ # Levenshtein distance algorithm implementation for Ruby, with UTF-8 support.
3
+ #
4
+ # The Levenshtein distance is a measure of how similar two strings s and t are,
5
+ # calculated as the number of deletions/insertions/substitutions needed to
6
+ # transform s into t. The greater the distance, the more the strings differ.
7
+ #
8
+ # The Levenshtein distance is also sometimes referred to as the
9
+ # easier-to-pronounce-and-spell 'edit distance'.
10
+ #
11
+ # Author: Paul Battley (pbattley@gmail.com)
12
+ #
13
+
14
+ module Text # :nodoc:
15
+ module Levenshtein
16
+
17
+ # Calculate the Levenshtein distance between two strings +str1+ and +str2+.
18
+ # +str1+ and +str2+ should be ASCII, UTF-8, or a one-byte-per character encoding such
19
+ # as ISO-8859-*.
20
+ #
21
+ # The strings will be treated as UTF-8 if $KCODE is set appropriately (i.e. 'u').
22
+ # Otherwise, the comparison will be performed byte-by-byte. There is no specific support
23
+ # for Shift-JIS or EUC strings.
24
+ #
25
+ # When using Unicode text, be aware that this algorithm does not perform normalisation.
26
+ # If there is a possibility of different normalised forms being used, normalisation
27
+ # should be performed beforehand.
28
+ #
29
+ def distance(str1, str2)
30
+ if $KCODE =~ /^U/i
31
+ unpack_rule = 'U*'
32
+ else
33
+ unpack_rule = 'C*'
34
+ end
35
+ s = str1.unpack(unpack_rule)
36
+ t = str2.unpack(unpack_rule)
37
+ n = s.length
38
+ m = t.length
39
+ return m if (0 == n)
40
+ return n if (0 == m)
41
+
42
+ d = (0..m).to_a
43
+ x = nil
44
+
45
+ (0...n).each do |i|
46
+ e = i+1
47
+ (0...m).each do |j|
48
+ cost = (s[i] == t[j]) ? 0 : 1
49
+ x = [
50
+ d[j+1] + 1, # insertion
51
+ e + 1, # deletion
52
+ d[j] + cost # substitution
53
+ ].min
54
+ d[j] = e
55
+ e = x
56
+ end
57
+ d[m] = x
58
+ end
59
+
60
+ return x
61
+ end
62
+
63
+ extend self
64
+ end
65
+ end
@@ -0,0 +1,97 @@
1
+ #
2
+ # An implementation of the Metaphone phonetic coding system in Ruby.
3
+ #
4
+ # Metaphone encodes names into a phonetic form such that similar-sounding names
5
+ # have the same or similar Metaphone encodings.
6
+ #
7
+ # The original system was described by Lawrence Philips in Computer Language
8
+ # Vol. 7 No. 12, December 1990, pp 39-43.
9
+ #
10
+ # As there are multiple implementations of Metaphone, each with their own
11
+ # quirks, I have based this on my interpretation of the algorithm specification.
12
+ # Even LP's original BASIC implementation appears to contain bugs (specifically
13
+ # with the handling of CC and MB), when compared to his explanation of the
14
+ # algorithm.
15
+ #
16
+ # I have also compared this implementation with that found in PHP's standard
17
+ # library, which appears to mimic the behaviour of LP's original BASIC
18
+ # implementation. For compatibility, these rules can also be used by passing
19
+ # :buggy=>true to the methods.
20
+ #
21
+ # Author: Paul Battley (pbattley@gmail.com)
22
+ #
23
+
24
+ module Text # :nodoc:
25
+ module Metaphone
26
+
27
+ module Rules # :nodoc:all
28
+
29
+ # Metaphone rules. These are simply applied in order.
30
+ #
31
+ STANDARD = [
32
+ # Regexp, replacement
33
+ [ /([bcdfhjklmnpqrstvwxyz])\1+/,
34
+ '\1' ], # Remove doubled consonants except g.
35
+ # [PHP] remove c from regexp.
36
+ [ /^ae/, 'E' ],
37
+ [ /^[gkp]n/, 'N' ],
38
+ [ /^wr/, 'R' ],
39
+ [ /^x/, 'S' ],
40
+ [ /^wh/, 'W' ],
41
+ [ /mb$/, 'M' ], # [PHP] remove $ from regexp.
42
+ [ /(?!^)sch/, 'SK' ],
43
+ [ /th/, '0' ],
44
+ [ /t?ch|sh/, 'X' ],
45
+ [ /c(?=ia)/, 'X' ],
46
+ [ /[st](?=i[ao])/, 'X' ],
47
+ [ /s?c(?=[iey])/, 'S' ],
48
+ [ /[cq]/, 'K' ],
49
+ [ /dg(?=[iey])/, 'J' ],
50
+ [ /d/, 'T' ],
51
+ [ /g(?=h[^aeiou])/, '' ],
52
+ [ /gn(ed)?/, 'N' ],
53
+ [ /([^g]|^)g(?=[iey])/,
54
+ '\1J' ],
55
+ [ /g+/, 'K' ],
56
+ [ /ph/, 'F' ],
57
+ [ /([aeiou])h(?=\b|[^aeiou])/,
58
+ '\1' ],
59
+ [ /[wy](?![aeiou])/, '' ],
60
+ [ /z/, 'S' ],
61
+ [ /v/, 'F' ],
62
+ [ /(?!^)[aeiou]+/, '' ],
63
+ ]
64
+
65
+ # The rules for the 'buggy' alternate implementation used by PHP etc.
66
+ #
67
+ BUGGY = STANDARD.dup
68
+ BUGGY[0] = [ /([bdfhjklmnpqrstvwxyz])\1+/, '\1' ]
69
+ BUGGY[6] = [ /mb/, 'M' ]
70
+ end
71
+
72
+ # Returns the Metaphone representation of a string. If the string contains
73
+ # multiple words, each word in turn is converted into its Metaphone
74
+ # representation. Note that only the letters A-Z are supported, so any
75
+ # language-specific processing should be done beforehand.
76
+ #
77
+ # If the :buggy option is set, alternate 'buggy' rules are used.
78
+ #
79
+ def metaphone(str, options={})
80
+ return str.strip.split(/\s+/).map { |w| metaphone_word(w, options) }.join(' ')
81
+ end
82
+
83
+ private
84
+
85
+ def metaphone_word(w, options={})
86
+ # Normalise case and remove non-ASCII
87
+ s = w.downcase.gsub(/[^a-z]/, '')
88
+ # Apply the Metaphone rules
89
+ rules = options[:buggy] ? Rules::BUGGY : Rules::STANDARD
90
+ rules.each { |rx, rep| s.gsub!(rx, rep) }
91
+ return s.upcase
92
+ end
93
+
94
+ extend self
95
+
96
+ end
97
+ end
@@ -0,0 +1,61 @@
1
+ #
2
+ # Ruby implementation of the Soundex algorithm,
3
+ # as described by Knuth in volume 3 of The Art of Computer Programming.
4
+ #
5
+ # Author: Michael Neumann (neumann@s-direktnet.de)
6
+ #
7
+
8
+ module Text # :nodoc:
9
+ module Soundex
10
+
11
+ def soundex(str_or_arr)
12
+ case str_or_arr
13
+ when String
14
+ soundex_str(str_or_arr)
15
+ when Array
16
+ str_or_arr.collect{|ele| soundex_str(ele)}
17
+ else
18
+ nil
19
+ end
20
+ end
21
+ module_function :soundex
22
+
23
+ private
24
+
25
+ #
26
+ # returns nil if the value couldn't be calculated (empty-string, wrong-character)
27
+ # do not change the parameter "str"
28
+ #
29
+ def soundex_str(str)
30
+ return nil if str.empty?
31
+
32
+ str = str.upcase
33
+ last_code = get_code(str[0,1])
34
+ soundex_code = str[0,1]
35
+
36
+ for index in 1...(str.size) do
37
+ return soundex_code if soundex_code.size == 4
38
+
39
+ code = get_code(str[index,1])
40
+
41
+ if code == "0" then
42
+ last_code = nil
43
+ elsif code == nil then
44
+ return nil
45
+ elsif code != last_code then
46
+ soundex_code += code
47
+ last_code = code
48
+ end
49
+ end # for
50
+
51
+ return soundex_code + "000"[0,4-soundex_code.size]
52
+ end
53
+ module_function :soundex_str
54
+
55
+ def get_code(char)
56
+ char.tr! "AEIOUYWHBPFVCSKGJQXZDTLMNR", "00000000111122222222334556"
57
+ end
58
+ module_function :get_code
59
+
60
+ end # module Soundex
61
+ end # module Text
@@ -0,0 +1,46 @@
1
+ require 'rubygems'
2
+
3
+ require 'rake'
4
+ require 'rake/testtask'
5
+ require 'rake/packagetask'
6
+ require 'rake/gempackagetask'
7
+ require 'rcov/rcovtask'
8
+ require 'rake/rdoctask'
9
+
10
+ gemspec = Gem::Specification.new do |s|
11
+ s.name = 'Text'
12
+ s.version = '1.0.0'
13
+ s.summary ='A collection of text algorithms'
14
+ s.files = FileList['{lib,test}/**/*.*', '*.txt', 'rakefile.rb']
15
+ s.require_path = 'lib'
16
+ s.autorequire = 'text'
17
+ s.has_rdoc = false
18
+ s.rubyforge_project = 'text'
19
+ s.homepage = 'http://text.rubyforge.org/'
20
+ s.author = 'Paul Battley, Michael Neumann, Tim Fletcher'
21
+ end
22
+
23
+ Rake::GemPackageTask.new(gemspec) { |t| t.package_dir = 'gems' }
24
+
25
+ Rake::PackageTask.new('text', '1.0.0') do |p|
26
+ p.need_tar_gz = true
27
+ p.package_files.include('lib/**/*.rb')
28
+ end
29
+
30
+ Rake::TestTask.new do |t|
31
+ t.test_files = FileList['test/*_test.rb']
32
+ t.verbose = false
33
+ end
34
+
35
+ Rcov::RcovTask.new do |t|
36
+ t.test_files = FileList['test/*_test.rb']
37
+ t.output_dir = 'coverage'
38
+ t.rcov_opts = []
39
+ end
40
+
41
+ Rake::RDocTask.new do |t|
42
+ t.main = "README.rdoc"
43
+ t.rdoc_files.include("README.rdoc", "lib/**/*.rb")
44
+ end
45
+
46
+ task :default => :test
@@ -0,0 +1,2204 @@
1
+ flf2a$ 8 6 59 15 10 0 24463
2
+ Big by Glenn Chappell 4/93 -- based on Standard
3
+ Includes ISO Latin-1
4
+ Greek characters by Bruce Jakeway <pbjakeway@neumann.uwaterloo.ca>
5
+ figlet release 2.2 -- November 1996
6
+ Permission is hereby given to modify this font, as long as the
7
+ modifier's name is placed on a comment line.
8
+
9
+ Modified by Paul Burton <solution@earthlink.net> 12/96 to include new parameter
10
+ supported by FIGlet and FIGWin. May also be slightly modified for better use
11
+ of new full-width/kern/smush alternatives, but default output is NOT changed.
12
+ $@
13
+ $@
14
+ $@
15
+ $@
16
+ $@
17
+ $@
18
+ $@
19
+ $@@
20
+ _ @
21
+ | |@
22
+ | |@
23
+ | |@
24
+ |_|@
25
+ (_)@
26
+ @
27
+ @@
28
+ _ _ @
29
+ ( | )@
30
+ V V @
31
+ $ @
32
+ $ @
33
+ $ @
34
+ @
35
+ @@
36
+ _ _ @
37
+ _| || |_ @
38
+ |_ __ _|@
39
+ _| || |_ @
40
+ |_ __ _|@
41
+ |_||_| @
42
+ @
43
+ @@
44
+ _ @
45
+ | | @
46
+ / __)@
47
+ \__ \@
48
+ ( /@
49
+ |_| @
50
+ @
51
+ @@
52
+ _ __@
53
+ (_) / /@
54
+ / / @
55
+ / / @
56
+ / / _ @
57
+ /_/ (_)@
58
+ @
59
+ @@
60
+ @
61
+ ___ @
62
+ ( _ ) @
63
+ / _ \/\@
64
+ | (_> <@
65
+ \___/\/@
66
+ @
67
+ @@
68
+ _ @
69
+ ( )@
70
+ |/ @
71
+ $ @
72
+ $ @
73
+ $ @
74
+ @
75
+ @@
76
+ __@
77
+ / /@
78
+ | | @
79
+ | | @
80
+ | | @
81
+ | | @
82
+ \_\@
83
+ @@
84
+ __ @
85
+ \ \ @
86
+ | |@
87
+ | |@
88
+ | |@
89
+ | |@
90
+ /_/ @
91
+ @@
92
+ _ @
93
+ /\| |/\ @
94
+ \ ` ' / @
95
+ |_ _|@
96
+ / , . \ @
97
+ \/|_|\/ @
98
+ @
99
+ @@
100
+ @
101
+ _ @
102
+ _| |_ @
103
+ |_ _|@
104
+ |_| @
105
+ $ @
106
+ @
107
+ @@
108
+ @
109
+ @
110
+ @
111
+ @
112
+ _ @
113
+ ( )@
114
+ |/ @
115
+ @@
116
+ @
117
+ @
118
+ ______ @
119
+ |______|@
120
+ $ @
121
+ $ @
122
+ @
123
+ @@
124
+ @
125
+ @
126
+ @
127
+ @
128
+ _ @
129
+ (_)@
130
+ @
131
+ @@
132
+ __@
133
+ / /@
134
+ / / @
135
+ / / @
136
+ / / @
137
+ /_/ @
138
+ @
139
+ @@
140
+ ___ @
141
+ / _ \ @
142
+ | | | |@
143
+ | | | |@
144
+ | |_| |@
145
+ \___/ @
146
+ @
147
+ @@
148
+ __ @
149
+ /_ |@
150
+ | |@
151
+ | |@
152
+ | |@
153
+ |_|@
154
+ @
155
+ @@
156
+ ___ @
157
+ |__ \ @
158
+ $) |@
159
+ / / @
160
+ / /_ @
161
+ |____|@
162
+ @
163
+ @@
164
+ ____ @
165
+ |___ \ @
166
+ __) |@
167
+ |__ < @
168
+ ___) |@
169
+ |____/ @
170
+ @
171
+ @@
172
+ _ _ @
173
+ | || | @
174
+ | || |_ @
175
+ |__ _|@
176
+ | | @
177
+ |_| @
178
+ @
179
+ @@
180
+ _____ @
181
+ | ____|@
182
+ | |__ @
183
+ |___ \ @
184
+ ___) |@
185
+ |____/ @
186
+ @
187
+ @@
188
+ __ @
189
+ / / @
190
+ / /_ @
191
+ | '_ \ @
192
+ | (_) |@
193
+ \___/ @
194
+ @
195
+ @@
196
+ ______ @
197
+ |____ |@
198
+ $/ / @
199
+ / / @
200
+ / / @
201
+ /_/ @
202
+ @
203
+ @@
204
+ ___ @
205
+ / _ \ @
206
+ | (_) |@
207
+ > _ < @
208
+ | (_) |@
209
+ \___/ @
210
+ @
211
+ @@
212
+ ___ @
213
+ / _ \ @
214
+ | (_) |@
215
+ \__, |@
216
+ / / @
217
+ /_/ @
218
+ @
219
+ @@
220
+ @
221
+ _ @
222
+ (_)@
223
+ $ @
224
+ _ @
225
+ (_)@
226
+ @
227
+ @@
228
+ @
229
+ _ @
230
+ (_)@
231
+ $ @
232
+ _ @
233
+ ( )@
234
+ |/ @
235
+ @@
236
+ __@
237
+ / /@
238
+ / / @
239
+ < < @
240
+ \ \ @
241
+ \_\@
242
+ @
243
+ @@
244
+ @
245
+ ______ @
246
+ |______|@
247
+ ______ @
248
+ |______|@
249
+ @
250
+ @
251
+ @@
252
+ __ @
253
+ \ \ @
254
+ \ \ @
255
+ > >@
256
+ / / @
257
+ /_/ @
258
+ @
259
+ @@
260
+ ___ @
261
+ |__ \ @
262
+ ) |@
263
+ / / @
264
+ |_| @
265
+ (_) @
266
+ @
267
+ @@
268
+ @
269
+ ____ @
270
+ / __ \ @
271
+ / / _` |@
272
+ | | (_| |@
273
+ \ \__,_|@
274
+ \____/ @
275
+ @@
276
+ @
277
+ /\ @
278
+ / \ @
279
+ / /\ \ @
280
+ / ____ \ @
281
+ /_/ \_\@
282
+ @
283
+ @@
284
+ ____ @
285
+ | _ \ @
286
+ | |_) |@
287
+ | _ < @
288
+ | |_) |@
289
+ |____/ @
290
+ @
291
+ @@
292
+ _____ @
293
+ / ____|@
294
+ | | $ @
295
+ | | $ @
296
+ | |____ @
297
+ \_____|@
298
+ @
299
+ @@
300
+ _____ @
301
+ | __ \ @
302
+ | | | |@
303
+ | | | |@
304
+ | |__| |@
305
+ |_____/ @
306
+ @
307
+ @@
308
+ ______ @
309
+ | ____|@
310
+ | |__ @
311
+ | __| @
312
+ | |____ @
313
+ |______|@
314
+ @
315
+ @@
316
+ ______ @
317
+ | ____|@
318
+ | |__ @
319
+ | __| @
320
+ | | @
321
+ |_| @
322
+ @
323
+ @@
324
+ _____ @
325
+ / ____|@
326
+ | | __ @
327
+ | | |_ |@
328
+ | |__| |@
329
+ \_____|@
330
+ @
331
+ @@
332
+ _ _ @
333
+ | | | |@
334
+ | |__| |@
335
+ | __ |@
336
+ | | | |@
337
+ |_| |_|@
338
+ @
339
+ @@
340
+ _____ @
341
+ |_ _|@
342
+ | | @
343
+ | | @
344
+ _| |_ @
345
+ |_____|@
346
+ @
347
+ @@
348
+ _ @
349
+ | |@
350
+ | |@
351
+ _ | |@
352
+ | |__| |@
353
+ \____/ @
354
+ @
355
+ @@
356
+ _ __@
357
+ | |/ /@
358
+ | ' / @
359
+ | < @
360
+ | . \ @
361
+ |_|\_\@
362
+ @
363
+ @@
364
+ _ @
365
+ | | @
366
+ | | @
367
+ | | @
368
+ | |____ @
369
+ |______|@
370
+ @
371
+ @@
372
+ __ __ @
373
+ | \/ |@
374
+ | \ / |@
375
+ | |\/| |@
376
+ | | | |@
377
+ |_| |_|@
378
+ @
379
+ @@
380
+ _ _ @
381
+ | \ | |@
382
+ | \| |@
383
+ | . ` |@
384
+ | |\ |@
385
+ |_| \_|@
386
+ @
387
+ @@
388
+ ____ @
389
+ / __ \ @
390
+ | | | |@
391
+ | | | |@
392
+ | |__| |@
393
+ \____/ @
394
+ @
395
+ @@
396
+ _____ @
397
+ | __ \ @
398
+ | |__) |@
399
+ | ___/ @
400
+ | | @
401
+ |_| @
402
+ @
403
+ @@
404
+ ____ @
405
+ / __ \ @
406
+ | | | |@
407
+ | | | |@
408
+ | |__| |@
409
+ \___\_\@
410
+ @
411
+ @@
412
+ _____ @
413
+ | __ \ @
414
+ | |__) |@
415
+ | _ / @
416
+ | | \ \ @
417
+ |_| \_\@
418
+ @
419
+ @@
420
+ _____ @
421
+ / ____|@
422
+ | (___ @
423
+ \___ \ @
424
+ ____) |@
425
+ |_____/ @
426
+ @
427
+ @@
428
+ _______ @
429
+ |__ __|@
430
+ | | @
431
+ | | @
432
+ | | @
433
+ |_| @
434
+ @
435
+ @@
436
+ _ _ @
437
+ | | | |@
438
+ | | | |@
439
+ | | | |@
440
+ | |__| |@
441
+ \____/ @
442
+ @
443
+ @@
444
+ __ __@
445
+ \ \ / /@
446
+ \ \ / / @
447
+ \ \/ / @
448
+ \ / @
449
+ \/ @
450
+ @
451
+ @@
452
+ __ __@
453
+ \ \ / /@
454
+ \ \ /\ / / @
455
+ \ \/ \/ / @
456
+ \ /\ / @
457
+ \/ \/ @
458
+ @
459
+ @@
460
+ __ __@
461
+ \ \ / /@
462
+ \ V / @
463
+ > < @
464
+ / . \ @
465
+ /_/ \_\@
466
+ @
467
+ @@
468
+ __ __@
469
+ \ \ / /@
470
+ \ \_/ / @
471
+ \ / @
472
+ | | @
473
+ |_| @
474
+ @
475
+ @@
476
+ ______@
477
+ |___ /@
478
+ $/ / @
479
+ / / @
480
+ / /__ @
481
+ /_____|@
482
+ @
483
+ @@
484
+ ___ @
485
+ | _|@
486
+ | | @
487
+ | | @
488
+ | | @
489
+ | |_ @
490
+ |___|@
491
+ @@
492
+ __ @
493
+ \ \ @
494
+ \ \ @
495
+ \ \ @
496
+ \ \ @
497
+ \_\@
498
+ @
499
+ @@
500
+ ___ @
501
+ |_ |@
502
+ | |@
503
+ | |@
504
+ | |@
505
+ _| |@
506
+ |___|@
507
+ @@
508
+ /\ @
509
+ |/\|@
510
+ $ @
511
+ $ @
512
+ $ @
513
+ $ @
514
+ @
515
+ @@
516
+ @
517
+ @
518
+ @
519
+ @
520
+ @
521
+ $ @
522
+ ______ @
523
+ |______|@@
524
+ _ @
525
+ ( )@
526
+ \|@
527
+ $ @
528
+ $ @
529
+ $ @
530
+ @
531
+ @@
532
+ @
533
+ @
534
+ __ _ @
535
+ / _` |@
536
+ | (_| |@
537
+ \__,_|@
538
+ @
539
+ @@
540
+ _ @
541
+ | | @
542
+ | |__ @
543
+ | '_ \ @
544
+ | |_) |@
545
+ |_.__/ @
546
+ @
547
+ @@
548
+ @
549
+ @
550
+ ___ @
551
+ / __|@
552
+ | (__ @
553
+ \___|@
554
+ @
555
+ @@
556
+ _ @
557
+ | |@
558
+ __| |@
559
+ / _` |@
560
+ | (_| |@
561
+ \__,_|@
562
+ @
563
+ @@
564
+ @
565
+ @
566
+ ___ @
567
+ / _ \@
568
+ | __/@
569
+ \___|@
570
+ @
571
+ @@
572
+ __ @
573
+ / _|@
574
+ | |_ @
575
+ | _|@
576
+ | | @
577
+ |_| @
578
+ @
579
+ @@
580
+ @
581
+ @
582
+ __ _ @
583
+ / _` |@
584
+ | (_| |@
585
+ \__, |@
586
+ __/ |@
587
+ |___/ @@
588
+ _ @
589
+ | | @
590
+ | |__ @
591
+ | '_ \ @
592
+ | | | |@
593
+ |_| |_|@
594
+ @
595
+ @@
596
+ _ @
597
+ (_)@
598
+ _ @
599
+ | |@
600
+ | |@
601
+ |_|@
602
+ @
603
+ @@
604
+ _ @
605
+ (_)@
606
+ _ @
607
+ | |@
608
+ | |@
609
+ | |@
610
+ _/ |@
611
+ |__/ @@
612
+ _ @
613
+ | | @
614
+ | | __@
615
+ | |/ /@
616
+ | < @
617
+ |_|\_\@
618
+ @
619
+ @@
620
+ _ @
621
+ | |@
622
+ | |@
623
+ | |@
624
+ | |@
625
+ |_|@
626
+ @
627
+ @@
628
+ @
629
+ @
630
+ _ __ ___ @
631
+ | '_ ` _ \ @
632
+ | | | | | |@
633
+ |_| |_| |_|@
634
+ @
635
+ @@
636
+ @
637
+ @
638
+ _ __ @
639
+ | '_ \ @
640
+ | | | |@
641
+ |_| |_|@
642
+ @
643
+ @@
644
+ @
645
+ @
646
+ ___ @
647
+ / _ \ @
648
+ | (_) |@
649
+ \___/ @
650
+ @
651
+ @@
652
+ @
653
+ @
654
+ _ __ @
655
+ | '_ \ @
656
+ | |_) |@
657
+ | .__/ @
658
+ | | @
659
+ |_| @@
660
+ @
661
+ @
662
+ __ _ @
663
+ / _` |@
664
+ | (_| |@
665
+ \__, |@
666
+ | |@
667
+ |_|@@
668
+ @
669
+ @
670
+ _ __ @
671
+ | '__|@
672
+ | | @
673
+ |_| @
674
+ @
675
+ @@
676
+ @
677
+ @
678
+ ___ @
679
+ / __|@
680
+ \__ \@
681
+ |___/@
682
+ @
683
+ @@
684
+ _ @
685
+ | | @
686
+ | |_ @
687
+ | __|@
688
+ | |_ @
689
+ \__|@
690
+ @
691
+ @@
692
+ @
693
+ @
694
+ _ _ @
695
+ | | | |@
696
+ | |_| |@
697
+ \__,_|@
698
+ @
699
+ @@
700
+ @
701
+ @
702
+ __ __@
703
+ \ \ / /@
704
+ \ V / @
705
+ \_/ @
706
+ @
707
+ @@
708
+ @
709
+ @
710
+ __ __@
711
+ \ \ /\ / /@
712
+ \ V V / @
713
+ \_/\_/ @
714
+ @
715
+ @@
716
+ @
717
+ @
718
+ __ __@
719
+ \ \/ /@
720
+ > < @
721
+ /_/\_\@
722
+ @
723
+ @@
724
+ @
725
+ @
726
+ _ _ @
727
+ | | | |@
728
+ | |_| |@
729
+ \__, |@
730
+ __/ |@
731
+ |___/ @@
732
+ @
733
+ @
734
+ ____@
735
+ |_ /@
736
+ / / @
737
+ /___|@
738
+ @
739
+ @@
740
+ __@
741
+ / /@
742
+ | | @
743
+ / / @
744
+ \ \ @
745
+ | | @
746
+ \_\@
747
+ @@
748
+ _ @
749
+ | |@
750
+ | |@
751
+ | |@
752
+ | |@
753
+ | |@
754
+ | |@
755
+ |_|@@
756
+ __ @
757
+ \ \ @
758
+ | | @
759
+ \ \@
760
+ / /@
761
+ | | @
762
+ /_/ @
763
+ @@
764
+ /\/|@
765
+ |/\/ @
766
+ $ @
767
+ $ @
768
+ $ @
769
+ $ @
770
+ @
771
+ @@
772
+ _ _ @
773
+ (_)_(_) @
774
+ / \ @
775
+ / _ \ @
776
+ / ___ \ @
777
+ /_/ \_\@
778
+ @
779
+ @@
780
+ _ _ @
781
+ (_)_(_)@
782
+ / _ \ @
783
+ | | | |@
784
+ | |_| |@
785
+ \___/ @
786
+ @
787
+ @@
788
+ _ _ @
789
+ (_) (_)@
790
+ | | | |@
791
+ | | | |@
792
+ | |_| |@
793
+ \___/ @
794
+ @
795
+ @@
796
+ _ _ @
797
+ (_) (_)@
798
+ __ _ @
799
+ / _` |@
800
+ | (_| |@
801
+ \__,_|@
802
+ @
803
+ @@
804
+ _ _ @
805
+ (_) (_)@
806
+ ___ @
807
+ / _ \ @
808
+ | (_) |@
809
+ \___/ @
810
+ @
811
+ @@
812
+ _ _ @
813
+ (_) (_)@
814
+ _ _ @
815
+ | | | |@
816
+ | |_| |@
817
+ \__,_|@
818
+ @
819
+ @@
820
+ ___ @
821
+ / _ \ @
822
+ | | ) |@
823
+ | |< < @
824
+ | | ) |@
825
+ | ||_/ @
826
+ |_| @
827
+ @@
828
+ 160 NO-BREAK SPACE
829
+ $@
830
+ $@
831
+ $@
832
+ $@
833
+ $@
834
+ $@
835
+ $@
836
+ $@@
837
+ 161 INVERTED EXCLAMATION MARK
838
+ _ @
839
+ (_)@
840
+ | |@
841
+ | |@
842
+ | |@
843
+ |_|@
844
+ @
845
+ @@
846
+ 162 CENT SIGN
847
+ @
848
+ _ @
849
+ | | @
850
+ / __)@
851
+ | (__ @
852
+ \ )@
853
+ |_| @
854
+ @@
855
+ 163 POUND SIGN
856
+ ___ @
857
+ / ,_\ @
858
+ _| |_ @
859
+ |__ __| @
860
+ | |____ @
861
+ (_,_____|@
862
+ @
863
+ @@
864
+ 164 CURRENCY SIGN
865
+ @
866
+ /\___/\@
867
+ \ _ /@
868
+ | (_) |@
869
+ / ___ \@
870
+ \/ \/@
871
+ @
872
+ @@
873
+ 165 YEN SIGN
874
+ __ __ @
875
+ \ \ / / @
876
+ _\ V /_ @
877
+ |___ ___|@
878
+ |___ ___|@
879
+ |_| @
880
+ @
881
+ @@
882
+ 166 BROKEN BAR
883
+ _ @
884
+ | |@
885
+ | |@
886
+ |_|@
887
+ _ @
888
+ | |@
889
+ | |@
890
+ |_|@@
891
+ 167 SECTION SIGN
892
+ __ @
893
+ _/ _)@
894
+ / \ \ @
895
+ \ \\ \@
896
+ \ \_/@
897
+ (__/ @
898
+ @
899
+ @@
900
+ 168 DIAERESIS
901
+ _ _ @
902
+ (_) (_)@
903
+ $ $ @
904
+ $ $ @
905
+ $ $ @
906
+ $ $ @
907
+ @
908
+ @@
909
+ 169 COPYRIGHT SIGN
910
+ ________ @
911
+ / ____ \ @
912
+ / / ___| \ @
913
+ | | | |@
914
+ | | |___ |@
915
+ \ \____| / @
916
+ \________/ @
917
+ @@
918
+ 170 FEMININE ORDINAL INDICATOR
919
+ __ _ @
920
+ / _` |@
921
+ | (_| |@
922
+ \__,_|@
923
+ |_____|@
924
+ $ @
925
+ @
926
+ @@
927
+ 171 LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
928
+ ____@
929
+ / / /@
930
+ / / / @
931
+ < < < @
932
+ \ \ \ @
933
+ \_\_\@
934
+ @
935
+ @@
936
+ 172 NOT SIGN
937
+ @
938
+ @
939
+ ______ @
940
+ |____ |@
941
+ |_|@
942
+ $ @
943
+ @
944
+ @@
945
+ 173 SOFT HYPHEN
946
+ @
947
+ @
948
+ _____ @
949
+ |_____|@
950
+ $ @
951
+ $ @
952
+ @
953
+ @@
954
+ 174 REGISTERED SIGN
955
+ ________ @
956
+ / ____ \ @
957
+ / | _ \ \ @
958
+ | | |_) | |@
959
+ | | _ < |@
960
+ \ |_| \_\ / @
961
+ \________/ @
962
+ @@
963
+ 175 MACRON
964
+ ______ @
965
+ |______|@
966
+ $ @
967
+ $ @
968
+ $ @
969
+ $ @
970
+ @
971
+ @@
972
+ 176 DEGREE SIGN
973
+ __ @
974
+ / \ @
975
+ | () |@
976
+ \__/ @
977
+ $ @
978
+ $ @
979
+ @
980
+ @@
981
+ 177 PLUS-MINUS SIGN
982
+ _ @
983
+ _| |_ @
984
+ |_ _|@
985
+ |_| @
986
+ _____ @
987
+ |_____|@
988
+ @
989
+ @@
990
+ 178 SUPERSCRIPT TWO
991
+ ___ @
992
+ |_ )@
993
+ / / @
994
+ /___|@
995
+ $ @
996
+ $ @
997
+ @
998
+ @@
999
+ 179 SUPERSCRIPT THREE
1000
+ ____@
1001
+ |__ /@
1002
+ |_ \@
1003
+ |___/@
1004
+ $ @
1005
+ $ @
1006
+ @
1007
+ @@
1008
+ 180 ACUTE ACCENT
1009
+ __@
1010
+ /_/@
1011
+ $ @
1012
+ $ @
1013
+ $ @
1014
+ $ @
1015
+ @
1016
+ @@
1017
+ 181 MICRO SIGN
1018
+ @
1019
+ @
1020
+ _ _ @
1021
+ | | | |@
1022
+ | |_| |@
1023
+ | ._,_|@
1024
+ | | @
1025
+ |_| @@
1026
+ 182 PILCROW SIGN
1027
+ ______ @
1028
+ / |@
1029
+ | (| || |@
1030
+ \__ || |@
1031
+ | || |@
1032
+ |_||_|@
1033
+ @
1034
+ @@
1035
+ 183 MIDDLE DOT
1036
+ @
1037
+ @
1038
+ _ @
1039
+ (_)@
1040
+ $ @
1041
+ $ @
1042
+ @
1043
+ @@
1044
+ 184 CEDILLA
1045
+ @
1046
+ @
1047
+ @
1048
+ @
1049
+ @
1050
+ _ @
1051
+ )_)@
1052
+ @@
1053
+ 185 SUPERSCRIPT ONE
1054
+ _ @
1055
+ / |@
1056
+ | |@
1057
+ |_|@
1058
+ $ @
1059
+ $ @
1060
+ @
1061
+ @@
1062
+ 186 MASCULINE ORDINAL INDICATOR
1063
+ ___ @
1064
+ / _ \ @
1065
+ | (_) |@
1066
+ \___/ @
1067
+ |_____|@
1068
+ $ @
1069
+ @
1070
+ @@
1071
+ 187 RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
1072
+ ____ @
1073
+ \ \ \ @
1074
+ \ \ \ @
1075
+ > > >@
1076
+ / / / @
1077
+ /_/_/ @
1078
+ @
1079
+ @@
1080
+ 188 VULGAR FRACTION ONE QUARTER
1081
+ _ __ @
1082
+ / | / / @
1083
+ | |/ / _ @
1084
+ |_/ / | | @
1085
+ / /|_ _|@
1086
+ /_/ |_| @
1087
+ @
1088
+ @@
1089
+ 189 VULGAR FRACTION ONE HALF
1090
+ _ __ @
1091
+ / | / / @
1092
+ | |/ /__ @
1093
+ |_/ /_ )@
1094
+ / / / / @
1095
+ /_/ /___|@
1096
+ @
1097
+ @@
1098
+ 190 VULGAR FRACTION THREE QUARTERS
1099
+ ____ __ @
1100
+ |__ / / / @
1101
+ |_ \/ / _ @
1102
+ |___/ / | | @
1103
+ / /|_ _|@
1104
+ /_/ |_| @
1105
+ @
1106
+ @@
1107
+ 191 INVERTED QUESTION MARK
1108
+ _ @
1109
+ (_) @
1110
+ | | @
1111
+ / / @
1112
+ | (__ @
1113
+ \___|@
1114
+ @
1115
+ @@
1116
+ 192 LATIN CAPITAL LETTER A WITH GRAVE
1117
+ __ @
1118
+ \_\ @
1119
+ / \ @
1120
+ / _ \ @
1121
+ / ___ \ @
1122
+ /_/ \_\@
1123
+ @
1124
+ @@
1125
+ 193 LATIN CAPITAL LETTER A WITH ACUTE
1126
+ __ @
1127
+ /_/ @
1128
+ / \ @
1129
+ / _ \ @
1130
+ / ___ \ @
1131
+ /_/ \_\@
1132
+ @
1133
+ @@
1134
+ 194 LATIN CAPITAL LETTER A WITH CIRCUMFLEX
1135
+ //\ @
1136
+ |/_\| @
1137
+ / \ @
1138
+ / _ \ @
1139
+ / ___ \ @
1140
+ /_/ \_\@
1141
+ @
1142
+ @@
1143
+ 195 LATIN CAPITAL LETTER A WITH TILDE
1144
+ /\/| @
1145
+ |/\/ @
1146
+ / \ @
1147
+ / _ \ @
1148
+ / ___ \ @
1149
+ /_/ \_\@
1150
+ @
1151
+ @@
1152
+ 196 LATIN CAPITAL LETTER A WITH DIAERESIS
1153
+ _ _ @
1154
+ (_)_(_) @
1155
+ / \ @
1156
+ / _ \ @
1157
+ / ___ \ @
1158
+ /_/ \_\@
1159
+ @
1160
+ @@
1161
+ 197 LATIN CAPITAL LETTER A WITH RING ABOVE
1162
+ _ @
1163
+ (o) @
1164
+ / \ @
1165
+ / _ \ @
1166
+ / ___ \ @
1167
+ /_/ \_\@
1168
+ @
1169
+ @@
1170
+ 198 LATIN CAPITAL LETTER AE
1171
+ _______ @
1172
+ / ____|@
1173
+ / |__ @
1174
+ / /| __| @
1175
+ / ___ |____ @
1176
+ /_/ |______|@
1177
+ @
1178
+ @@
1179
+ 199 LATIN CAPITAL LETTER C WITH CEDILLA
1180
+ _____ @
1181
+ / ____|@
1182
+ | | $ @
1183
+ | | $ @
1184
+ | |____ @
1185
+ \_____|@
1186
+ )_) @
1187
+ @@
1188
+ 200 LATIN CAPITAL LETTER E WITH GRAVE
1189
+ __ @
1190
+ _\_\_ @
1191
+ | ____|@
1192
+ | _| @
1193
+ | |___ @
1194
+ |_____|@
1195
+ @
1196
+ @@
1197
+ 201 LATIN CAPITAL LETTER E WITH ACUTE
1198
+ __ @
1199
+ _/_/_ @
1200
+ | ____|@
1201
+ | _| @
1202
+ | |___ @
1203
+ |_____|@
1204
+ @
1205
+ @@
1206
+ 202 LATIN CAPITAL LETTER E WITH CIRCUMFLEX
1207
+ //\ @
1208
+ |/ \| @
1209
+ | ____|@
1210
+ | _| @
1211
+ | |___ @
1212
+ |_____|@
1213
+ @
1214
+ @@
1215
+ 203 LATIN CAPITAL LETTER E WITH DIAERESIS
1216
+ _ _ @
1217
+ (_) (_)@
1218
+ | ____|@
1219
+ | _| @
1220
+ | |___ @
1221
+ |_____|@
1222
+ @
1223
+ @@
1224
+ 204 LATIN CAPITAL LETTER I WITH GRAVE
1225
+ __ @
1226
+ \_\ @
1227
+ |_ _|@
1228
+ | | @
1229
+ | | @
1230
+ |___|@
1231
+ @
1232
+ @@
1233
+ 205 LATIN CAPITAL LETTER I WITH ACUTE
1234
+ __ @
1235
+ /_/ @
1236
+ |_ _|@
1237
+ | | @
1238
+ | | @
1239
+ |___|@
1240
+ @
1241
+ @@
1242
+ 206 LATIN CAPITAL LETTER I WITH CIRCUMFLEX
1243
+ //\ @
1244
+ |/_\|@
1245
+ |_ _|@
1246
+ | | @
1247
+ | | @
1248
+ |___|@
1249
+ @
1250
+ @@
1251
+ 207 LATIN CAPITAL LETTER I WITH DIAERESIS
1252
+ _ _ @
1253
+ (_)_(_)@
1254
+ |_ _| @
1255
+ | | @
1256
+ | | @
1257
+ |___| @
1258
+ @
1259
+ @@
1260
+ 208 LATIN CAPITAL LETTER ETH
1261
+ _____ @
1262
+ | __ \ @
1263
+ _| |_ | |@
1264
+ |__ __|| |@
1265
+ | |__| |@
1266
+ |_____/ @
1267
+ @
1268
+ @@
1269
+ 209 LATIN CAPITAL LETTER N WITH TILDE
1270
+ /\/| @
1271
+ |/\/_ @
1272
+ | \ | |@
1273
+ | \| |@
1274
+ | |\ |@
1275
+ |_| \_|@
1276
+ @
1277
+ @@
1278
+ 210 LATIN CAPITAL LETTER O WITH GRAVE
1279
+ __ @
1280
+ \_\ @
1281
+ / _ \ @
1282
+ | | | |@
1283
+ | |_| |@
1284
+ \___/ @
1285
+ @
1286
+ @@
1287
+ 211 LATIN CAPITAL LETTER O WITH ACUTE
1288
+ __ @
1289
+ /_/ @
1290
+ / _ \ @
1291
+ | | | |@
1292
+ | |_| |@
1293
+ \___/ @
1294
+ @
1295
+ @@
1296
+ 212 LATIN CAPITAL LETTER O WITH CIRCUMFLEX
1297
+ //\ @
1298
+ |/_\| @
1299
+ / _ \ @
1300
+ | | | |@
1301
+ | |_| |@
1302
+ \___/ @
1303
+ @
1304
+ @@
1305
+ 213 LATIN CAPITAL LETTER O WITH TILDE
1306
+ /\/| @
1307
+ |/\/ @
1308
+ / _ \ @
1309
+ | | | |@
1310
+ | |_| |@
1311
+ \___/ @
1312
+ @
1313
+ @@
1314
+ 214 LATIN CAPITAL LETTER O WITH DIAERESIS
1315
+ _ _ @
1316
+ (_)_(_)@
1317
+ / _ \ @
1318
+ | | | |@
1319
+ | |_| |@
1320
+ \___/ @
1321
+ @
1322
+ @@
1323
+ 215 MULTIPLICATION SIGN
1324
+ @
1325
+ @
1326
+ /\/\@
1327
+ > <@
1328
+ \/\/@
1329
+ $ @
1330
+ @
1331
+ @@
1332
+ 216 LATIN CAPITAL LETTER O WITH STROKE
1333
+ _____ @
1334
+ / __// @
1335
+ | | // |@
1336
+ | |//| |@
1337
+ | //_| |@
1338
+ //___/ @
1339
+ @
1340
+ @@
1341
+ 217 LATIN CAPITAL LETTER U WITH GRAVE
1342
+ __ @
1343
+ _\_\_ @
1344
+ | | | |@
1345
+ | | | |@
1346
+ | |_| |@
1347
+ \___/ @
1348
+ @
1349
+ @@
1350
+ 218 LATIN CAPITAL LETTER U WITH ACUTE
1351
+ __ @
1352
+ _/_/_ @
1353
+ | | | |@
1354
+ | | | |@
1355
+ | |_| |@
1356
+ \___/ @
1357
+ @
1358
+ @@
1359
+ 219 LATIN CAPITAL LETTER U WITH CIRCUMFLEX
1360
+ //\ @
1361
+ |/ \| @
1362
+ | | | |@
1363
+ | | | |@
1364
+ | |_| |@
1365
+ \___/ @
1366
+ @
1367
+ @@
1368
+ 220 LATIN CAPITAL LETTER U WITH DIAERESIS
1369
+ _ _ @
1370
+ (_) (_)@
1371
+ | | | |@
1372
+ | | | |@
1373
+ | |_| |@
1374
+ \___/ @
1375
+ @
1376
+ @@
1377
+ 221 LATIN CAPITAL LETTER Y WITH ACUTE
1378
+ __ @
1379
+ __/_/__@
1380
+ \ \ / /@
1381
+ \ V / @
1382
+ | | @
1383
+ |_| @
1384
+ @
1385
+ @@
1386
+ 222 LATIN CAPITAL LETTER THORN
1387
+ _ @
1388
+ | |___ @
1389
+ | __ \ @
1390
+ | |__) |@
1391
+ | ___/ @
1392
+ |_| @
1393
+ @
1394
+ @@
1395
+ 223 LATIN SMALL LETTER SHARP S
1396
+ ___ @
1397
+ / _ \ @
1398
+ | | ) |@
1399
+ | |< < @
1400
+ | | ) |@
1401
+ | ||_/ @
1402
+ |_| @
1403
+ @@
1404
+ 224 LATIN SMALL LETTER A WITH GRAVE
1405
+ __ @
1406
+ \_\ @
1407
+ __ _ @
1408
+ / _` |@
1409
+ | (_| |@
1410
+ \__,_|@
1411
+ @
1412
+ @@
1413
+ 225 LATIN SMALL LETTER A WITH ACUTE
1414
+ __ @
1415
+ /_/ @
1416
+ __ _ @
1417
+ / _` |@
1418
+ | (_| |@
1419
+ \__,_|@
1420
+ @
1421
+ @@
1422
+ 226 LATIN SMALL LETTER A WITH CIRCUMFLEX
1423
+ //\ @
1424
+ |/ \| @
1425
+ __ _ @
1426
+ / _` |@
1427
+ | (_| |@
1428
+ \__,_|@
1429
+ @
1430
+ @@
1431
+ 227 LATIN SMALL LETTER A WITH TILDE
1432
+ /\/| @
1433
+ |/\/ @
1434
+ __ _ @
1435
+ / _` |@
1436
+ | (_| |@
1437
+ \__,_|@
1438
+ @
1439
+ @@
1440
+ 228 LATIN SMALL LETTER A WITH DIAERESIS
1441
+ _ _ @
1442
+ (_) (_)@
1443
+ __ _ @
1444
+ / _` |@
1445
+ | (_| |@
1446
+ \__,_|@
1447
+ @
1448
+ @@
1449
+ 229 LATIN SMALL LETTER A WITH RING ABOVE
1450
+ __ @
1451
+ (()) @
1452
+ __ _ @
1453
+ / _` |@
1454
+ | (_| |@
1455
+ \__,_|@
1456
+ @
1457
+ @@
1458
+ 230 LATIN SMALL LETTER AE
1459
+ @
1460
+ @
1461
+ __ ____ @
1462
+ / _` _ \@
1463
+ | (_| __/@
1464
+ \__,____|@
1465
+ @
1466
+ @@
1467
+ 231 LATIN SMALL LETTER C WITH CEDILLA
1468
+ @
1469
+ @
1470
+ ___ @
1471
+ / __|@
1472
+ | (__ @
1473
+ \___|@
1474
+ )_) @
1475
+ @@
1476
+ 232 LATIN SMALL LETTER E WITH GRAVE
1477
+ __ @
1478
+ \_\ @
1479
+ ___ @
1480
+ / _ \@
1481
+ | __/@
1482
+ \___|@
1483
+ @
1484
+ @@
1485
+ 233 LATIN SMALL LETTER E WITH ACUTE
1486
+ __ @
1487
+ /_/ @
1488
+ ___ @
1489
+ / _ \@
1490
+ | __/@
1491
+ \___|@
1492
+ @
1493
+ @@
1494
+ 234 LATIN SMALL LETTER E WITH CIRCUMFLEX
1495
+ //\ @
1496
+ |/ \|@
1497
+ ___ @
1498
+ / _ \@
1499
+ | __/@
1500
+ \___|@
1501
+ @
1502
+ @@
1503
+ 235 LATIN SMALL LETTER E WITH DIAERESIS
1504
+ _ _ @
1505
+ (_) (_)@
1506
+ ___ @
1507
+ / _ \ @
1508
+ | __/ @
1509
+ \___| @
1510
+ @
1511
+ @@
1512
+ 236 LATIN SMALL LETTER I WITH GRAVE
1513
+ __ @
1514
+ \_\@
1515
+ _ @
1516
+ | |@
1517
+ | |@
1518
+ |_|@
1519
+ @
1520
+ @@
1521
+ 237 LATIN SMALL LETTER I WITH ACUTE
1522
+ __@
1523
+ /_/@
1524
+ _ @
1525
+ | |@
1526
+ | |@
1527
+ |_|@
1528
+ @
1529
+ @@
1530
+ 238 LATIN SMALL LETTER I WITH CIRCUMFLEX
1531
+ //\ @
1532
+ |/ \|@
1533
+ _ @
1534
+ | | @
1535
+ | | @
1536
+ |_| @
1537
+ @
1538
+ @@
1539
+ 239 LATIN SMALL LETTER I WITH DIAERESIS
1540
+ _ _ @
1541
+ (_) (_)@
1542
+ _ @
1543
+ | | @
1544
+ | | @
1545
+ |_| @
1546
+ @
1547
+ @@
1548
+ 240 LATIN SMALL LETTER ETH
1549
+ /\/\ @
1550
+ > < @
1551
+ \/\ \ @
1552
+ / _` |@
1553
+ | (_) |@
1554
+ \___/ @
1555
+ @
1556
+ @@
1557
+ 241 LATIN SMALL LETTER N WITH TILDE
1558
+ /\/| @
1559
+ |/\/ @
1560
+ _ __ @
1561
+ | '_ \ @
1562
+ | | | |@
1563
+ |_| |_|@
1564
+ @
1565
+ @@
1566
+ 242 LATIN SMALL LETTER O WITH GRAVE
1567
+ __ @
1568
+ \_\ @
1569
+ ___ @
1570
+ / _ \ @
1571
+ | (_) |@
1572
+ \___/ @
1573
+ @
1574
+ @@
1575
+ 243 LATIN SMALL LETTER O WITH ACUTE
1576
+ __ @
1577
+ /_/ @
1578
+ ___ @
1579
+ / _ \ @
1580
+ | (_) |@
1581
+ \___/ @
1582
+ @
1583
+ @@
1584
+ 244 LATIN SMALL LETTER O WITH CIRCUMFLEX
1585
+ //\ @
1586
+ |/ \| @
1587
+ ___ @
1588
+ / _ \ @
1589
+ | (_) |@
1590
+ \___/ @
1591
+ @
1592
+ @@
1593
+ 245 LATIN SMALL LETTER O WITH TILDE
1594
+ /\/| @
1595
+ |/\/ @
1596
+ ___ @
1597
+ / _ \ @
1598
+ | (_) |@
1599
+ \___/ @
1600
+ @
1601
+ @@
1602
+ 246 LATIN SMALL LETTER O WITH DIAERESIS
1603
+ _ _ @
1604
+ (_) (_)@
1605
+ ___ @
1606
+ / _ \ @
1607
+ | (_) |@
1608
+ \___/ @
1609
+ @
1610
+ @@
1611
+ 247 DIVISION SIGN
1612
+ _ @
1613
+ (_) @
1614
+ _______ @
1615
+ |_______|@
1616
+ _ @
1617
+ (_) @
1618
+ @
1619
+ @@
1620
+ 248 LATIN SMALL LETTER O WITH STROKE
1621
+ @
1622
+ @
1623
+ ____ @
1624
+ / _//\ @
1625
+ | (//) |@
1626
+ \//__/ @
1627
+ @
1628
+ @@
1629
+ 249 LATIN SMALL LETTER U WITH GRAVE
1630
+ __ @
1631
+ \_\ @
1632
+ _ _ @
1633
+ | | | |@
1634
+ | |_| |@
1635
+ \__,_|@
1636
+ @
1637
+ @@
1638
+ 250 LATIN SMALL LETTER U WITH ACUTE
1639
+ __ @
1640
+ /_/ @
1641
+ _ _ @
1642
+ | | | |@
1643
+ | |_| |@
1644
+ \__,_|@
1645
+ @
1646
+ @@
1647
+ 251 LATIN SMALL LETTER U WITH CIRCUMFLEX
1648
+ //\ @
1649
+ |/ \| @
1650
+ _ _ @
1651
+ | | | |@
1652
+ | |_| |@
1653
+ \__,_|@
1654
+ @
1655
+ @@
1656
+ 252 LATIN SMALL LETTER U WITH DIAERESIS
1657
+ _ _ @
1658
+ (_) (_)@
1659
+ _ _ @
1660
+ | | | |@
1661
+ | |_| |@
1662
+ \__,_|@
1663
+ @
1664
+ @@
1665
+ 253 LATIN SMALL LETTER Y WITH ACUTE
1666
+ __ @
1667
+ /_/ @
1668
+ _ _ @
1669
+ | | | |@
1670
+ | |_| |@
1671
+ \__, |@
1672
+ __/ |@
1673
+ |___/ @@
1674
+ 254 LATIN SMALL LETTER THORN
1675
+ _ @
1676
+ | | @
1677
+ | |__ @
1678
+ | '_ \ @
1679
+ | |_) |@
1680
+ | .__/ @
1681
+ | | @
1682
+ |_| @@
1683
+ 255 LATIN SMALL LETTER Y WITH DIAERESIS
1684
+ _ _ @
1685
+ (_) (_)@
1686
+ _ _ @
1687
+ | | | |@
1688
+ | |_| |@
1689
+ \__, |@
1690
+ __/ |@
1691
+ |___/ @@
1692
+ 0x02BC MODIFIER LETTER APOSTROPHE
1693
+ @
1694
+ @
1695
+ ))@
1696
+ @
1697
+ @
1698
+ @
1699
+ @
1700
+ @@
1701
+ 0x02BD MODIFIER LETTER REVERSED COMMA
1702
+ @
1703
+ @
1704
+ ((@
1705
+ @
1706
+ @
1707
+ @
1708
+ @
1709
+ @@
1710
+ 0x037A GREEK YPOGEGRAMMENI
1711
+ @
1712
+ @
1713
+ @
1714
+ @
1715
+ @
1716
+ @
1717
+ @
1718
+ ||@@
1719
+ 0x0387 GREEK ANO TELEIA
1720
+ @
1721
+ $ @
1722
+ _ @
1723
+ (_)@
1724
+ @
1725
+ $ @
1726
+ @
1727
+ @@
1728
+ 0x0391 GREEK CAPITAL LETTER ALPHA
1729
+ ___ @
1730
+ / _ \ @
1731
+ | |_| |@
1732
+ | _ |@
1733
+ | | | |@
1734
+ |_| |_|@
1735
+ @
1736
+ @@
1737
+ 0x0392 GREEK CAPITAL LETTER BETA
1738
+ ____ @
1739
+ | _ \ @
1740
+ | |_) )@
1741
+ | _ ( @
1742
+ | |_) )@
1743
+ |____/ @
1744
+ @
1745
+ @@
1746
+ 0x0393 GREEK CAPITAL LETTER GAMMA
1747
+ _____ @
1748
+ | ___)@
1749
+ | |$ @
1750
+ | |$ @
1751
+ | | @
1752
+ |_| @
1753
+ @
1754
+ @@
1755
+ 0x0394 GREEK CAPITAL LETTER DELTA
1756
+ @
1757
+ /\ @
1758
+ / \ @
1759
+ / /\ \ @
1760
+ / /__\ \ @
1761
+ /________\@
1762
+ @
1763
+ @@
1764
+ 0x0395 GREEK CAPITAL LETTER EPSILON
1765
+ _____ @
1766
+ | ___)@
1767
+ | |_ @
1768
+ | _) @
1769
+ | |___ @
1770
+ |_____)@
1771
+ @
1772
+ @@
1773
+ 0x0396 GREEK CAPITAL LETTER ZETA
1774
+ ______@
1775
+ (___ /@
1776
+ / / @
1777
+ / / @
1778
+ / /__ @
1779
+ /_____)@
1780
+ @
1781
+ @@
1782
+ 0x0397 GREEK CAPITAL LETTER ETA
1783
+ _ _ @
1784
+ | | | |@
1785
+ | |_| |@
1786
+ | _ |@
1787
+ | | | |@
1788
+ |_| |_|@
1789
+ @
1790
+ @@
1791
+ 0x0398 GREEK CAPITAL LETTER THETA
1792
+ ____ @
1793
+ / __ \ @
1794
+ | |__| |@
1795
+ | __ |@
1796
+ | |__| |@
1797
+ \____/ @
1798
+ @
1799
+ @@
1800
+ 0x0399 GREEK CAPITAL LETTER IOTA
1801
+ ___ @
1802
+ ( )@
1803
+ | | @
1804
+ | | @
1805
+ | | @
1806
+ (___)@
1807
+ @
1808
+ @@
1809
+ 0x039A GREEK CAPITAL LETTER KAPPA
1810
+ _ __@
1811
+ | | / /@
1812
+ | |/ / @
1813
+ | < @
1814
+ | |\ \ @
1815
+ |_| \_\@
1816
+ @
1817
+ @@
1818
+ 0x039B GREEK CAPITAL LETTER LAMDA
1819
+ @
1820
+ /\ @
1821
+ / \ @
1822
+ / /\ \ @
1823
+ / / \ \ @
1824
+ /_/ \_\@
1825
+ @
1826
+ @@
1827
+ 0x039C GREEK CAPITAL LETTER MU
1828
+ __ __ @
1829
+ | \ / |@
1830
+ | v |@
1831
+ | |\_/| |@
1832
+ | | | |@
1833
+ |_| |_|@
1834
+ @
1835
+ @@
1836
+ 0x039D GREEK CAPITAL LETTER NU
1837
+ _ _ @
1838
+ | \ | |@
1839
+ | \| |@
1840
+ | |@
1841
+ | |\ |@
1842
+ |_| \_|@
1843
+ @
1844
+ @@
1845
+ 0x039E GREEK CAPITAL LETTER XI
1846
+ _____ @
1847
+ (_____)@
1848
+ ___ @
1849
+ (___) @
1850
+ _____ @
1851
+ (_____)@
1852
+ @
1853
+ @@
1854
+ 0x039F GREEK CAPITAL LETTER OMICRON
1855
+ ___ @
1856
+ / _ \ @
1857
+ | | | |@
1858
+ | | | |@
1859
+ | |_| |@
1860
+ \___/ @
1861
+ @
1862
+ @@
1863
+ 0x03A0 GREEK CAPITAL LETTER PI
1864
+ _______ @
1865
+ ( _ )@
1866
+ | | | | @
1867
+ | | | | @
1868
+ | | | | @
1869
+ |_| |_| @
1870
+ @
1871
+ @@
1872
+ 0x03A1 GREEK CAPITAL LETTER RHO
1873
+ ____ @
1874
+ | _ \ @
1875
+ | |_) )@
1876
+ | __/ @
1877
+ | | @
1878
+ |_| @
1879
+ @
1880
+ @@
1881
+ 0x03A3 GREEK CAPITAL LETTER SIGMA
1882
+ ______ @
1883
+ \ ___)@
1884
+ \ \ @
1885
+ > > @
1886
+ / /__ @
1887
+ /_____)@
1888
+ @
1889
+ @@
1890
+ 0x03A4 GREEK CAPITAL LETTER TAU
1891
+ _____ @
1892
+ (_ _)@
1893
+ | | @
1894
+ | | @
1895
+ | | @
1896
+ |_| @
1897
+ @
1898
+ @@
1899
+ 0x03A5 GREEK CAPITAL LETTER UPSILON
1900
+ __ __ @
1901
+ (_ \ / _)@
1902
+ \ v / @
1903
+ | | @
1904
+ | | @
1905
+ |_| @
1906
+ @
1907
+ @@
1908
+ 0x03A6 GREEK CAPITAL LETTER PHI
1909
+ _ @
1910
+ _| |_ @
1911
+ / \ @
1912
+ ( (| |) )@
1913
+ \_ _/ @
1914
+ |_| @
1915
+ @
1916
+ @@
1917
+ 0x03A7 GREEK CAPITAL LETTER CHI
1918
+ __ __@
1919
+ \ \ / /@
1920
+ \ v / @
1921
+ > < @
1922
+ / ^ \ @
1923
+ /_/ \_\@
1924
+ @
1925
+ @@
1926
+ 0x03A8 GREEK CAPITAL LETTER PSI
1927
+ _ _ _ @
1928
+ | || || |@
1929
+ | \| |/ |@
1930
+ \_ _/ @
1931
+ | | @
1932
+ |_| @
1933
+ @
1934
+ @@
1935
+ 0x03A9 GREEK CAPITAL LETTER OMEGA
1936
+ ____ @
1937
+ / __ \ @
1938
+ | | | | @
1939
+ | | | | @
1940
+ _\ \/ /_ @
1941
+ (___||___)@
1942
+ @
1943
+ @@
1944
+ 0x03B1 GREEK SMALL LETTER ALPHA
1945
+ @
1946
+ @
1947
+ __ __@
1948
+ / \/ /@
1949
+ ( () < @
1950
+ \__/\_\@
1951
+ @
1952
+ @@
1953
+ 0x03B2 GREEK SMALL LETTER BETA
1954
+ ___ @
1955
+ / _ \ @
1956
+ | |_) )@
1957
+ | _ < @
1958
+ | |_) )@
1959
+ | __/ @
1960
+ | | @
1961
+ |_| @@
1962
+ 0x03B3 GREEK SMALL LETTER GAMMA
1963
+ @
1964
+ @
1965
+ _ _ @
1966
+ ( \ / )@
1967
+ \ v / @
1968
+ | | @
1969
+ | | @
1970
+ |_| @@
1971
+ 0x03B4 GREEK SMALL LETTER DELTA
1972
+ __ @
1973
+ / _) @
1974
+ \ \ @
1975
+ / _ \ @
1976
+ ( (_) )@
1977
+ \___/ @
1978
+ @
1979
+ @@
1980
+ 0x03B5 GREEK SMALL LETTER EPSILON
1981
+ @
1982
+ @
1983
+ ___ @
1984
+ / __)@
1985
+ > _) @
1986
+ \___)@
1987
+ @
1988
+ @@
1989
+ 0x03B6 GREEK SMALL LETTER ZETA
1990
+ _____ @
1991
+ \__ ) @
1992
+ / / @
1993
+ / / @
1994
+ | |__ @
1995
+ \__ \ @
1996
+ ) )@
1997
+ (_/ @@
1998
+ 0x03B7 GREEK SMALL LETTER ETA
1999
+ @
2000
+ @
2001
+ _ __ @
2002
+ | '_ \ @
2003
+ | | | |@
2004
+ |_| | |@
2005
+ | |@
2006
+ |_|@@
2007
+ 0x03B8 GREEK SMALL LETTER THETA
2008
+ ___ @
2009
+ / _ \ @
2010
+ | |_| |@
2011
+ | _ |@
2012
+ | |_| |@
2013
+ \___/ @
2014
+ @
2015
+ @@
2016
+ 0x03B9 GREEK SMALL LETTER IOTA
2017
+ @
2018
+ @
2019
+ _ @
2020
+ | | @
2021
+ | | @
2022
+ \_)@
2023
+ @
2024
+ @@
2025
+ 0x03BA GREEK SMALL LETTER KAPPA
2026
+ @
2027
+ @
2028
+ _ __@
2029
+ | |/ /@
2030
+ | < @
2031
+ |_|\_\@
2032
+ @
2033
+ @@
2034
+ 0x03BB GREEK SMALL LETTER LAMDA
2035
+ __ @
2036
+ \ \ @
2037
+ \ \ @
2038
+ > \ @
2039
+ / ^ \ @
2040
+ /_/ \_\@
2041
+ @
2042
+ @@
2043
+ 0x03BC GREEK SMALL LETTER MU
2044
+ @
2045
+ @
2046
+ _ _ @
2047
+ | | | |@
2048
+ | |_| |@
2049
+ | ._,_|@
2050
+ | | @
2051
+ |_| @@
2052
+ 0x03BD GREEK SMALL LETTER NU
2053
+ @
2054
+ @
2055
+ _ __@
2056
+ | |/ /@
2057
+ | / / @
2058
+ |__/ @
2059
+ @
2060
+ @@
2061
+ 0x03BE GREEK SMALL LETTER XI
2062
+ \=\__ @
2063
+ > __) @
2064
+ ( (_ @
2065
+ > _) @
2066
+ ( (__ @
2067
+ \__ \ @
2068
+ ) )@
2069
+ (_/ @@
2070
+ 0x03BF GREEK SMALL LETTER OMICRON
2071
+ @
2072
+ @
2073
+ ___ @
2074
+ / _ \ @
2075
+ ( (_) )@
2076
+ \___/ @
2077
+ @
2078
+ @@
2079
+ 0x03C0 GREEK SMALL LETTER PI
2080
+ @
2081
+ @
2082
+ ______ @
2083
+ ( __ )@
2084
+ | || | @
2085
+ |_||_| @
2086
+ @
2087
+ @@
2088
+ 0x03C1 GREEK SMALL LETTER RHO
2089
+ @
2090
+ @
2091
+ ___ @
2092
+ / _ \ @
2093
+ | |_) )@
2094
+ | __/ @
2095
+ | | @
2096
+ |_| @@
2097
+ 0x03C2 GREEK SMALL LETTER FINAL SIGMA
2098
+ @
2099
+ @
2100
+ ____ @
2101
+ / ___)@
2102
+ ( (__ @
2103
+ \__ \ @
2104
+ _) )@
2105
+ (__/ @@
2106
+ 0x03C3 GREEK SMALL LETTER SIGMA
2107
+ @
2108
+ @
2109
+ ____ @
2110
+ / ._)@
2111
+ ( () ) @
2112
+ \__/ @
2113
+ @
2114
+ @@
2115
+ 0x03C4 GREEK SMALL LETTER TAU
2116
+ @
2117
+ @
2118
+ ___ @
2119
+ ( )@
2120
+ | | @
2121
+ \_)@
2122
+ @
2123
+ @@
2124
+ 0x03C5 GREEK SMALL LETTER UPSILON
2125
+ @
2126
+ @
2127
+ _ _ @
2128
+ | | | |@
2129
+ | |_| |@
2130
+ \___/ @
2131
+ @
2132
+ @@
2133
+ 0x03C6 GREEK SMALL LETTER PHI
2134
+ _ @
2135
+ | | @
2136
+ _| |_ @
2137
+ / \ @
2138
+ ( (| |) )@
2139
+ \_ _/ @
2140
+ | | @
2141
+ |_| @@
2142
+ 0x03C7 GREEK SMALL LETTER CHI
2143
+ @
2144
+ @
2145
+ __ __@
2146
+ \ \ / /@
2147
+ \ v / @
2148
+ > < @
2149
+ / ^ \ @
2150
+ /_/ \_\@@
2151
+ 0x03C8 GREEK SMALL LETTER PSI
2152
+ @
2153
+ @
2154
+ _ _ _ @
2155
+ | || || |@
2156
+ | \| |/ |@
2157
+ \_ _/ @
2158
+ | | @
2159
+ |_| @@
2160
+ 0x03C9 GREEK SMALL LETTER OMEGA
2161
+ @
2162
+ @
2163
+ __ __ @
2164
+ / / _ \ \ @
2165
+ | |_/ \_| |@
2166
+ \___^___/ @
2167
+ @
2168
+ @@
2169
+ 0x03D1 GREEK THETA SYMBOL
2170
+ ___ @
2171
+ / _ \ @
2172
+ ( (_| |_ @
2173
+ _ \ _ _)@
2174
+ | |___| | @
2175
+ \_____/ @
2176
+ @
2177
+ @@
2178
+ 0x03D5 GREEK PHI SYMBOL
2179
+ @
2180
+ @
2181
+ _ __ @
2182
+ | | / \ @
2183
+ | || || )@
2184
+ \_ _/ @
2185
+ | | @
2186
+ |_| @@
2187
+ 0x03D6 GREEK PI SYMBOL
2188
+ @
2189
+ @
2190
+ _________ @
2191
+ ( _____ )@
2192
+ | |_/ \_| |@
2193
+ \___^___/ @
2194
+ @
2195
+ @@
2196
+ -0x0005
2197
+ alpha = a, beta = b, gamma = g, delta = d, epsilon = e @
2198
+ zeta = z, eta = h, theta = q, iota = i, lamda = l, mu = m@
2199
+ nu = n, xi = x, omicron = o, pi = p, rho = r, sigma = s @
2200
+ phi = f, chi = c, psi = y, omega = w, final sigma = V @
2201
+ pi symbol = v, theta symbol = J, phi symbol = j @
2202
+ middle dot = :, ypogegrammeni = _ @
2203
+ rough breathing = (, smooth breathing = ) @
2204
+ acute accent = ', grave accent = `, dialytika = ^ @@