How can I use vim to convert my file to utf8?

VimUtf 8

Vim Problem Overview


I have a text file. I've been told to make it UTF8. How can I do that with Vim?

Vim Solutions


Solution 1 - Vim

If you are editing a file encoded as latin1, you will find that 'fileencoding' for that buffer is set to latin1. So you will need to manually set the fileencoding before saving the file.

:set fileencoding=utf8
:w myfilename

Also note that UTF8 files often begin with a Byte Order Mark (BOM) which indicates endianness. The BOM is optional but some programs use it exclusively to determine the file encoding. Under certain conditions Vim will write the BOM but sometimes it won't. To explicitly set the BOM do this:

:set bomb

For more information :help mbyte-options and :help utf8 and :help bomb.

Solution 2 - Vim

:w ++enc=utf-8 %

to write the file in utf-8 encoding to disk.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionEric JohnsonView Question on Stackoverflow
Solution 1 - VimEric JohnsonView Answer on Stackoverflow
Solution 2 - VimMichael Krelin - hackerView Answer on Stackoverflow