A byte order mark (BOM) is a Unicode character used to signal the order of bytes in a text file or stream. As the BOM is U+FEFF, it makes it clear whether the high-order bytes are first (stream starts FE.FF) or second (stream starts FF.FE).

learn more… | top users | synonyms (2)

-4
votes
0answers
39 views

Unknown characters when updating utf-8 database (saved as utf-8) [closed]

Help! I am trying to update article on my website and I have encoding problem. I had that problem before on other website but back then I simply solve via Notepad++ I changed the UTF-8 without BOM ...
0
votes
0answers
17 views

some strange things after printing variable (п»ї)

<?php session_start(); $_SESSION['lang'] = 'arm'; $lang = $_GET['lang']; print $lang; $url = isset($_GET['url'])? $_GET['url']:null; $url = rtrim($url, '/'); $url = explode('/', $url); ...
1
vote
0answers
17 views

Override encoding

I have a php file that should echo nothing when everything is ok. But, due to hosting server setting (In my opinion) it echoes BOM. Can I somehow override encoding for that file, so it echoes ...
0
votes
1answer
14 views

C++: File without BOM in RadStudio

I'm trying to write file without BOM in RadStudio XE3. Im using TStreamWriter Helper classes for the purpose. The problem is that Everytime BOM is writed at the beginnig of the file. I want to avoid ...
0
votes
2answers
31 views

Text files appearing as bynaries on Mac Os X

I have >5000 textual files generated in Windows from PDF files that I need to process on a Mac OS X machine. I run dos2unix on all of them to correct the newline and to convert the encoding from ...
0
votes
1answer
56 views

Symfony2 Remove UTF-8 BOM from controller responses

While creating a "force download" action I discovered that ALL responses generated by the controller are including the UTF-8 BOM (). This is not relevant for regular pages, but for downloaded files ...
0
votes
1answer
40 views

Symfony2 forcing jpg download returns corrupted file

Following some of the many posts related to the subject I finally came up with this version of the "force download" code: public function downloadAction(Request $request){ $filename= 'test.jpg'; ...
2
votes
1answer
75 views

javascript internet explorer byte order mark

I am working on a way to save an HTML table to a csv file. Ideally, this should be cross-browser, and I have gotten this to work on everything but Internet Explorer. However, I have gotten the ...
0
votes
1answer
43 views

How to remove BOM from SignalR responses at Mono server?

I am running signalR at Mono at all the requests are processed correctly, however the response always contains a byte at the beginning and the end of the file. E.g. the response for hub.start() is ...
0
votes
1answer
106 views

Best practices & syntax for serving HTML headers with PHP for .mp3 or .pdf file downloads (step 1: remove BOM)

I'm serving an .mp3 file (as a download dialog box, where the end-user can rename and save the file). There are a lot of conflicting reccomendations for this on the forums and even within the ...
0
votes
1answer
81 views

set nobomb not removing byte oredr mark in vim

I want to remove ''\xef\xbb\xbf' marks (BOM) from my file. It's a text file to be fed to python, and the BOM marks are causing problems there. I tried :set nobomb but those are still there. How can I ...
0
votes
2answers
35 views

remove bom from website?

hi i have done something to my website and now im getting an anoying bom character appearing on my site, i recently was adding to my header meta tags in my header and now im getting these stupid ...
0
votes
0answers
36 views

Slow Cheetah is adding Byte Order Marker (BOM) when transforming WSDL

Since adding Slow Cheetah into my build/deploy process, I have run into problems with a java client trying to consume my .net web services. I have traced the problem to a Byte Order Marker (BOM) ...
0
votes
0answers
29 views

Nginx bom characters

On server was installed Apache. Installing Nginx before it caused a problem of BOM-characters at the top of HTML. How should I configure Nginx not to show this characters?
3
votes
1answer
163 views

Android JSONException: JSONArray must start with [ - and it does

Okay, I know this question has been asked before, but all the answers did not help at all. First, let me recap the problem: I have a (PHP-generated) JSON element, the PHP code looks like this: if ...
5
votes
1answer
85 views

Should Javascript files include the BOM or not?

I believe that most people suggest using UTF-8 as the encoding for Javascript files. Is there a standard about whether those files include the Byte-Order Mark, or do not included it? (i.e. Should JS ...
0
votes
1answer
68 views

JSON feed in UTF-8 without byte order marker

I have an WCF application written in C# that deliver my data in JSON or XML, depending on what the user asks for in the query string. Here is a quick snippet of my code that delivers the data: ...
3
votes
3answers
281 views

How to remove BOM from byte array

I have xml data in byte[] byteArray which may or mayn't contain BOM. Is there any standard way in C# to remove BOM from it? If not, what is the best way, which handles all the cases including all ...
0
votes
1answer
170 views

How do I add a BOM to all UTF-8 files in a project?

Current encoding is UTF-8 and I want to add BOM to all the files Context: Windows 8 app certification toolkit throws following error, if BOM is not added: File C:\x\y\z.js is not properly UTF-8 ...
1
vote
0answers
61 views

how can I detect file encoding in PHP? [duplicate]

I need to detect these encodings in a file : UTF-8 (with/without BOM) UTF-7 (I don't know about whether it has BOM) UTF-16 LE/BE (always with BOM) UTF-32 (I don't know about whether it has BOM) ...
0
votes
0answers
93 views

byte order mark in php files

I want to open a csv file using php . when I use English characters in this file anythings work well but problem starts when I want to use Persians (one the write-to-left languages which is very ...
1
vote
1answer
53 views

Prepend BOM to plone.namedfile field

I need to prepend the BOM to a NamedBlobFile field on my Dexterity type to make Windows users happy, but leave the file in blobstorage intact. What is the recommended way to hook into Zope's file ...
0
votes
2answers
145 views

Strip BOM from a generated string (not a file)

I'm working with strings that look like they're MS Office documents. Note in this example, there are two BOM "characters," one at the start of the string and one in the body. Sometimes there are ...
0
votes
2answers
152 views

Symbols '  ' is showing when reading from text file

Using the same project and text file as here: Java.NullPointerException null (again) the program is outputting the data but with . To put you in the picture: This program is a telephone ...
0
votes
2answers
683 views

Soap Issue - SoapFault exception: [Client] looks like we got no XML document

Ive looked at similar errors and i think its most likely due to a BOM character but to be honest most of the other coding is in a different context and i just dont understand it, im not that familiar ...
1
vote
2answers
100 views

Clone encoding but turn off BOM

Say I have an encoding: Encoding enc; When this encoding is passed to me, it is set up so it will emit a BOM. I'm not interested in BOMs. Encodings in my system are handled with headers. Assuming ...
1
vote
2answers
443 views

Read/Store different types of strings (utf8/utf16/ansi)

I'm parsing a file that among other things contains various strings in different encodings. The way these strings are stored is this: 0xFF 0xFF - block header 2 bytes 0xXX 0xXX - ...
0
votes
0answers
64 views

FireFox blank page in code ingniter application ( facebook api )

I have developed an application that uses the Facebook API to retrieve certain data. The application is developed with CodeIgniter. Everything goes well even in internet explorer but when it comes to ...
1
vote
2answers
591 views

How to remove “�” from php string? [duplicate]

Possible Duplicate: How to replace � in a string I am reading data from an XML sheet coming out of a database. In the raw output I am coming accross this character "�" ...
1
vote
1answer
329 views

NodeJs - how to make function fs.writeFile write with BOM?

I'm using nodeJS v0.8.6 and the native library fs. Here is my code : var filesys = require('fs'); filesys.writeFile('test.txt', 'This is an example with accents : é è à ','utf8', function (err) {}); ...
0
votes
2answers
125 views

utf-8 bom and headers in php [duplicate]

Possible Duplicate: “Warning: Headers already sent” in PHP When I create my php files with utf-8 bom, the header() function doesn't work because the bom chars are sent before the http ...
2
votes
0answers
60 views

ServiceStack XML Service how remove BOM character?

It is possible to disable the BOM for ServiceStack services such as XML?
0
votes
1answer
156 views

Can _wfopen read UCS2-LE encoded file into a wide char string buffer?

I wanted to read a .reg file exported from windows registry. And I found that .reg file is encoded as a Windows UNICODE file ( which I think it's UCS2-LE encoded, because first two bytes are : FFFE ). ...
-1
votes
1answer
239 views

json_decode return NULL , UTF-8 BOM

I want to decode the JSON data and store it in to an array using json_decode function but it's return NULL Value. I think it's because of UTF-8 BOM. Any Solution ? Im using Windows7 OS with xampp. I ...
1
vote
1answer
284 views

XSLT output BOM character visible in Excel

My Java EE web app uses XSLT transformation to produce CSV reports. If I specify "UTF-16" as the encoding on the XSLT (which seems to be the only way to handle accented characters in the XML) then I ...
1
vote
0answers
107 views

Byte Order Mark (BOM) and PHP files

I am using PrestaShop (1.5.2) for my website. Some time ago, an error creeped into the entire website, Line 1, Column 1: character "" not allowed in prolog (according to the W3C Validator). This ...
1
vote
0answers
56 views

id3 byte order mark in unicode

I am working on id3V2.3 in java, I already change the textencoding to unicode using setTextEncoding. The problem is I can't find the method to change the BOM to little endian. I checked the ID3 tag I ...
1
vote
2answers
636 views

Using PowerShell to write a file in UTF-8 without the BOM without double encoding

I have seen several great solutions on this forum to convert to UTF-8 without BOM. I need to be able to convert a series of files as such using powershell or something similar recursively. If I take ...
1
vote
1answer
93 views

Python: Youtube HTML full of BOMs

I'm trying to parse youtube comments using BeautifulSoup 4 in Python 2.7. When I try for any youtube video I get text full of BOMs, not just at the file start: <p> thank you kind sir ...
0
votes
0answers
29 views

Header definition export to excel file php [duplicate]

Possible Duplicate: How can I output a UTF-8 CSV in PHP that Excel will read properly? I need to export from html table to excel file, but I'm having troubles with characters when I read de ...
3
votes
2answers
407 views

PHP: How to put out text/plain content in UTF-8 with BOM for download?

I need to offer a plain text file for download. The text file needs to be UTF-8 encoded and needs a BOM to be present. I saved my php file as UTF-8 without BOM and send the following headers: ...
0
votes
1answer
236 views

Simple reading file using ReadFile()

Why this code doesn't output anything(exept info word)? File is exist. hReadFile = CreateFile(L"indexing.xml",GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ |FILE_SHARE_WRITE, NULL, OPEN_EXISTING, ...
0
votes
2answers
490 views

Removing BOM characters from AJAX-posted string

My content contains multiple BOM (EF BB BF) characters and I want to remove them. The characters are in the middle of strings I want to simply remove them all. The data comes from a JavaScript ...
1
vote
1answer
355 views

SqlServer Converting XML to varbinary and parsing it in .NET (C#)

Consider the following code: [Test] public void StackOverflowQuestionTest() { const string connectionString = "enter your connection string if you wanna test this code"; ...
0
votes
1answer
352 views

Why do I lose my UTF-8 BOM when changing file attributes?

I've a test Delphi application that uses TFileStream to write a UTF-8 BOM to a text file, followed by one dummy line of text. All works as expected, and using the hex viewer plugin for Notepad++ I ...
-1
votes
4answers
181 views

what is meant by BOM? [closed]

What is meant by BOM ? I tried reading this article but haven't really understood what does it mean. I read that some text editors put BOM before the beginning of a file. What it is meant for ?
0
votes
1answer
83 views

Is BOM used for 2-byte Unicode text files?

I know that BOM is used for UTF-8 files, but what about the text files where every character is 2-bytes, should I add the byte order mark to them, too?
0
votes
3answers
685 views

cURL gets response with utf-8 BOM

In my script I send data with cURL, and enabled CURLOPT_RETURNTRANSFER. The response is json encoded data. When I'm trying to json_decode, it returns null. Then I found that response contains utf-8 ...
0
votes
0answers
49 views

UTF BOM signature in multiple directories

What is the easiest way to add BOM signature to multiple files in multiple directories (recursively) in Windows, if they are already is in UTF-8? The UTFCast application damages files, if they are ...
0
votes
0answers
301 views

How do I convert a file from 'UTF-8 with BOM' to 'UTF-8 without BOM' on OS X? [closed]

I am having the same problem as in this question. I need to convert a file from UTF-8 with BOM to UTF-8 without BOM. How do I do this on OS X?

1 2 3 4