Reputation: 5105
I'm mainly interested in the English language characters and punctuation.
I need it for test data so I can emulate how an API handles different characters.
Can I generate it using Python or PHP?
Upvotes: 3
Views: 4514
Reputation: 2824
Most English characters are simply ascii, but here is a complete list of utf-8 characters.
Here is another list, sorted by sets of characters.
Upvotes: 2
Reputation: 212452
There's a useful interactive table here broken down by language/usage
Upvotes: 1
Reputation: 1960
You might want to check out the string module for python, that's got a few helpful data structures with data in them:
http://docs.python.org/library/string.html#
Upvotes: 0