vote up 1 vote down star
1

what are the corresponding unicode values of lower case and upper case letters from a to z

flag
The response to this question should be to just google it. A google of "unicode table" returns everything you need. – John Jan 30 at 11:40
I don't agree. This discussion is been held some time ago and stackoverflow wants all programming related questions. – Gamecat Jan 30 at 11:42
@Gamecat, I agree. In fact I'd go futher links in answers are useful but having the actual answer in SO itself is better. – AnthonyWJones Jan 30 at 11:49
As can be seen from the various answers and comments there are clearly two camps regarding how this question is to be interpreted. Maybe the OP can edit it to make clear what he really wanted to ask? As it is "just google it" seems to be as good an answer as any. – mghie Jan 31 at 10:12

5 Answers

vote up 9 vote down

Same as ASCII (but with leading 0s :)

A-Z = U+0041 - U+005A = 65-90 decimal

a-z = U+0061 - U+007A = 97-122 decimal

link|flag
dammit, 13 seconds faster! ;) – jalf Jan 30 at 11:36
You cannot beat Jon Skeet ;) – Filip Ekberg Jan 30 at 12:02
Downvoters: reasons are welcome as always... – Jon Skeet Jan 30 at 12:32
The answer is not complete. The mapping between lower and upper case letters is language-specific. For instance, in Turkish the lower case i corresponds to the upper case İ (dotted I) and the "plain" upper case I corresponds to lower case ı (dotless i) – Nemanja Trifunovic Jan 30 at 19:06
@Nemanja: It depends on how you read the question, IMO. – Jon Skeet Jan 30 at 19:19
show 1 more comment
vote up 7 vote down

Same as ASCII. All ASCII characters have the same values in Unicode.

link|flag
vote up 7 vote down

The Unicode code charts will probably help you.

link|flag
vote up 6 vote down

The answer largely depends on your language. Answers here are good for English language, but some languages contain additional characters which sometimes even change to two characters depending on the case (or two to one inversely) - Turkish comes to mind.

link|flag
And German: "ß" =to-uppercase=> "SS". – bendin Jan 30 at 11:49
While I agree with the general idea behind the answer - this does not really match the question, as neither umlaut characters nor "ß" are between a and z. – mghie Jan 30 at 11:53
"neither umlaut characters nor ß are between a and z" - maybe not in your alphabet. ;] – bzlm Jan 30 at 12:12
It definitely depends on how you read the question. I read it as "A-Z" and "a-z" rather than "a-z" and "upper-cased in a culturally sensitive manner a-z". I agree it's good to know about that though. – Jon Skeet Jan 30 at 12:14
@bzlm: No. There simply is no space left between U+0041 and U+005A or between U+0061 and U+007A for any umlaut characters. Regardless of alphabet. There was no mention in the question about language-correct sorting or anything like that. – mghie Jan 30 at 16:41
show 4 more comments
vote up 1 vote down

There are hex tables here: http://www.tamasoft.co.jp/en/general-info/unicode.html

But they are the same as ASCII anyway.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.