diff --git a/README.md b/README.md index 886dd40..70f118e 100644 --- a/README.md +++ b/README.md @@ -26,18 +26,18 @@ Original File Content (read as UTF-8) ```cpp // this string literal should be converted -chA->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("̰ Ⱦ")); +chA->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("�̰� ������ �Ⱦ���")); // this line should stay untouched -DWORD dwOppList[8]; // ̰ Ⱦ +DWORD dwOppList[8]; // �̰� ������ �Ⱦ��� ``` Original File Content (read as EUC-KR and converted to UTF-8) ```cpp // this string literal should be converted -chA->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("?? ?금?? ???")); +chA->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("이거 지금은 안쓴데")); // this line should stay untouched -DWORD dwOppList[8]; // ?? ?금?? ??? +DWORD dwOppList[8]; // 이거 지금은 안쓴데 ``` After running this script (read as UTF-8) @@ -46,7 +46,7 @@ After running this script (read as UTF-8) // this string literal should be converted chA->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("\xC0\xCC\xB0\xC5 \xC1\xF6\xB1\xDD\xC0\xBA \xBE\xC8\xBE\xB4\xB5\xA5")); // this line should stay untouched -DWORD dwOppList[8]; // ̰ Ⱦ +DWORD dwOppList[8]; // �̰� ������ �Ⱦ��� ``` After running `iconv` on the script output (read as UTF-8) @@ -55,8 +55,7 @@ After running `iconv` on the script output (read as UTF-8) // this string literal should be converted chA->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("\xC0\xCC\xB0\xC5 \xC1\xF6\xB1\xDD\xC0\xBA \xBE\xC8\xBE\xB4\xB5\xA5")); // this line should stay untouched -DWORD dwOppList[8]; // ?? ?금?? ??? - +DWORD dwOppList[8]; // 이거 지금은 안쓴데 ``` ## Usage