[#6422] Created a replacement unicode_test.txt for ASF release

Used the following snippet:

    from itertools import chain
    with open('unicode_test.txt', 'w') as fp:
        for c in chain(xrange(0x0020, 0x007f), xrange(0x00a0, 0x07cf)):
            fp.write((unichr(c) + u'\n').encode('utf-8'))

Signed-off-by: Cory Johns <cjohns@slashdotmedia.com>
1 file changed