significance
significance

Reputation: 5105

Where can I get a complete list of UTF-8 characters for the English language?

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

Answers (3)

Joel
Joel

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

Mark Baker
Mark Baker

Reputation: 212452

There's a useful interactive table here broken down by language/usage

Upvotes: 1

Dominic Santos
Dominic Santos

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

Related Questions