Inserting a header with special character

Hi,
I am trying to insert header row with a special character delimiter with Unicode u0109 into a file with �echo�, header looks like below

 echo �e �header1\u0109header\u0109header3\u0109header4� 

It just inserting as it is in the quotes but not the special character, Please suggest if am missing something or if I can do it in a other way.

Your echo command works here on debian 8, printing chars correctly.
Can you give printf a try ?

printf "%s\u0109%s\u0109%s\u0109" "header1" "header2" "header3" > file.txt

Also, wrong forum part, you should use code tags and please specify your operating system and shell.

Don't use but " .