Skip to content

Instantly share code, notes, and snippets.

View isaak654's full-sized avatar
I may be slow to respond

isaak654

I may be slow to respond
  • 16:22 (UTC +02:00)
View GitHub Profile
@isaak654
isaak654 / ansi-utf8-conversion.md
Created September 5, 2022 13:55 — forked from dogancelik/ansi-utf8-conversion.md
ANSI / UTF-8 (with or without BOM) conversion #Windows

Using Uni2Me

  • It's free but discontinued.

Using UTFCast

  • Proprietary software
  • Allows conversion from ANSI to UTF-8 with or without BOM

Using Notepad++

@isaak654
isaak654 / gist:da663e9cb726217993c7ce58dbe06e85
Created September 5, 2022 10:25 — forked from rmetzler/gist:2947828
find all non UTF-8 encoded files
find . -type f | xargs -I {} bash -c "iconv -f utf-8 -t utf-16 {} &>/dev/null || echo {}" > utf8_fail