#include #include #include unsigned int chars[] = { 0x8340, 0x8364, 0x8396 }; #define SIZE sizeof( chars ) / sizeof( unsigned int ) void main() { int i; _setmbcp( 932 ); for( i = 0; i < SIZE; i++ ) { printf( "%#6.4x - %#6.4x\n", chars[ i ], _mbctohira( chars[ i ] ) ); } }