3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

文字化け「名」→「吊」

Last updated at Posted at 2016-06-24

UTF-16でハマった為、メモ

Q. 特定の文字だけ化けてしまうのは何故か?

A. 改行コードの変換処理が悪さをしていた

  1. バージョン9までのMacで、改行コードは「CR」だった
  2. UTF-16の「名」=「0x540D」、「吊」=「0x540A」
  3. ツール・ライブラリ・コーディングしてる人の事情
    • 開発言語によっては、「CR」を改行として認識してくれない為、(など、諸々のコーディング事情により、)インポートされたファイルに対して改行コード「CR」=「0x0D」を「LF」=「0x0A」に一括置換させる実装がある
  4. 「名」=「0x540D」など、「0x0D」を使ってる文字まで、「0x0A」に置換される
  5. 「名」→「吊」に変身する

解決策

以下のいずれか。

  1. UTF-16を使わない
  2. 改行コードを置換しない
  3. UTF-16をUTF-8に変換してから、改行コードを置換する
    • UTF-8では、「0x0D」を使っている文字はない為
3
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?