Categories
Troubleshooting Web Development

Weird &#65279 Character in HTML

Want to Support Me?
Get two free stocks valued up to $1,850 when you open a new Webull investment account through my referral link and fund the account with at least $100!

I was recently working on a simple HTML project and created the basic HTML files in Visual Studio 2015. Nothing crazy. But when I ran the project in Chrome, there was some extra space at the top of the page that wasn’t coming from CSS. After inspecting the HTML in Developer Tools, I noticed a strange  character appearing in the HTML.

The weird character appears in the HTML in Developer Tools.

I read that these characters are BOMs, or byte order marks (also could be known as zero width no-break space). Some people were able to get rid of these characters by rewriting their HTML file by hand, but even after doing this, the characters were still there.

I finally found this StackOverflow post that describes how Visual Studio evidently saves UTF-8 files “with signature” by default, which also saves BOM characters.

You can save files “without signature” by using the Advanced Save Options in the File menu of Visual Studio.

vs2015-advanced-save
Visual Studio 2015 - save UTF-8 without signature

This will remove any BOM characters from your files.

I also added the Advanced Save Options command to my quick access toolbar:

  1. Right-click on the toolbar in Visual Studio, then click Customize.
  2. Click the Commands tab.
  3. In Toolbars menu, find Standard.
  4. Click Add Command and add Advanced Save Options.
  5. Move it where you want (I moved it under Save).
Want to Support Me?
Get two free stocks valued up to $1,850 when you open a new Webull investment account through my referral link and fund the account with at least $100!