kkamegawa's weblog

Visual Studio,TFS,ALM,VSTS,DevOps関係のことについていろいろと書いていきます。Google Analyticsで解析を行っています

System.Char.GetNumericNumber()が-1を返す文字はどれ?

ちょっとクイズ。PowerShellで実行すればすぐわかりますよ。たぶんWindows 8+IE10なら全部文字見えるはず(と思ったら見えなかったorz)。Windows 7とかでもChromeとかFirefoxなら見えるかな?見えなさそうな文字はコードポイント振ったので、なんとかしてください。

[system.char]::GetNumericValue('1')
[system.char]::GetNumericValue('一')
[system.char]::GetNumericValue('①') // U+2460
[system.char]::GetNumericValue('➊') // U+2776
[system.char]::GetNumericValue('㈠') //U+2780
[system.char]::GetNumericValue('1')
[system.char]::GetNumericValue('¹')
[system.char]::GetNumericValue('⒈') // U+2081
[system.char]::GetNumericValue('鄯') // U+2488
[system.char]::GetNumericValue('❶') //u+278A
[system.char]::GetNumericValue('➀') //U+2460
[system.char]::GetNumericValue('⑴') //U+2474
[system.char]::GetNumericValue('㊀') //U+3280 
[system.char]::GetNumericValue('⅟') //U+215F
[system.char]::GetNumericValue('㍙') // U+3359
[system.char]::GetNumericValue('1') // U+FF11

念のため画像でも