How to make UltraEdit save in UTF-8 without the byte order mark (BOM)?

10,569

Solution 1

The Ultraedit website says -

If you'd like to globally configure UltraEdit to save all UTF-8 files with BOMs, you can set this by going to Advanced -> Configuration -> File Handling -> Save. The first two options here, "Write UTF-8 BOM header to all UTF-8 files when saved" and "Write UTF-8 BOM on new files created within this program (if above is not set)" should be checked. Conversely, if you do NOT want the BOMs, make sure these are NOT checked.

Source

Solution 2

If you have a file that already has a BOM in it and need to save it without the BOM, then choose File -> Save As and in the Format drop-down box, choose UTF-8 - NO BOM.

This will remain the default 'save' format for all other files as long as your version of UltraEdit is greater than v17.10.0.1015 (there was a bug in UltraEdit prior to this where the 'save as' format was not remembered).

Share:
10,569

Related videos on Youtube

Murray Furtado
Author by

Murray Furtado

Hello, world! I enjoy using my experience to help others. That is why I am active at a number of other sites in the StackExchange network on topics that interest me. I'm something of a Swiss army knife both professionally and in private, able to juggle a wild variety of things at once. I've worked in every kind of business that uses software. I'm also very good with tools, both IT and mechanic. Whether you need software design or assembling some IKEA furniture, I'm your man for the job. I'm generally soft-spoken but driven by clear principles. I'm a twin, I've lived in five countries, I speak four languages fluently and two more embarrassingly. Also, being a father routinely develops my patience which is useful for moderating on StackExchange too. To learn more about me, see my Google+ profile.

Updated on September 18, 2022

Comments

  • Murray Furtado
    Murray Furtado over 1 year

    This related post tells me that UltraEdit adds the byte order mark when UTF-8-encoding files.

    How can I make UltraEdit convert a file into UTF-8 without adding the byte order mark?

  • Bibhas
    Bibhas about 12 years
    Glad I could help. :)