Search code examples
cutf-8file-handlingbyte-order-mark

How to add BOM to file using C


how can i add Byte order mark (BOM) to output file using C?

my output file is ANSI as UTF-8 (which mean UTF-8 without BOM)

but i need it to be UTF-8 with BOM

how can i do that?


Solution

  • the answer is

    printf("\xef\xbb\xbf");