Set Encoding of File to UTF8 With BOM in Sublime Text 3
Asked Answered
R

4

105

When I open a file in Sublime Text 3, at the bottom I have an option to set the Character Encoding as shown in the screenshot.

setting encoding

There is the option to set it to UTF-8 , which after doing some research means UTF-8 Without BOM, but I want to set it to UTF-8 With BOM like shown below:

UTF-8 with BOM

How can I do this from within ST3?

Reitz answered 22/1, 2014 at 16:57 Comment(0)
E
110

I can't set "UTF-8 with BOM" in the corner button either, but I can change it from the menu bar.

"File"->"Save with encoding"->"UTF-8 with BOM"

Eu answered 21/7, 2014 at 10:12 Comment(0)
D
181

Into Preferences > Settings - Users
File : Preferences.sublime-settings

Write this :

"show_encoding" : true,

It's explain on the release note date 17 December 2013. Build 3059. Official site Sublime Text 3

Dimidiate answered 17/10, 2014 at 19:6 Comment(4)
in all fairness, before i downvote this was it correct at some point? In the current release show_encoding does not offer a "with BOM" option and therefore does not answer the question.Melodious
Did I misunderstanding here? This doesn't answer the question at all.....Eu
It doesn't answer the question, but I have to admit that it helped me figure out a problem I was having with my code being interpreted as Chinese charactersCedell
does not answer the question and does not work in ST3Dramaturge
E
110

I can't set "UTF-8 with BOM" in the corner button either, but I can change it from the menu bar.

"File"->"Save with encoding"->"UTF-8 with BOM"

Eu answered 21/7, 2014 at 10:12 Comment(0)
E
4

Into the Preferences > Setting - Default

You will have the next by default:

// Display file encoding in the status bar
    "show_encoding": false

You could change it or like cdesmetz said set your user settings.

Eady answered 13/1, 2016 at 9:41 Comment(0)
R
0

By default, Sublime Text set 'UTF8 without BOM', but that wasn't specified.

The only specicified things is 'UTF8 with BOM'.

Hope this help :)

Rotunda answered 30/10, 2017 at 14:25 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.