On Sunday, May 27, 2012 13:53:24 Walter Bright wrote:
> On 5/27/2012 1:38 PM, Ali Çehreli wrote:
> > Great! :) Walter, there is a typo in my last name and it's not the first
> > letter. ;)
> OOPS! Fixed.
> 
> What's the Unicode number for the first letter, so I can fix that, too? Is
> there an entity name for it?

According to this

import std.stdio;

void main()
{
    writefln("%x", 'Ç');
}


it's \u00c7.

- Jonathan M Davis

Reply via email to