How to store a escape character in a Variable.?

How to store escape character in the variable.

Var=abc,def,ghi,jkl

echo ${Var} | sed -e "s/,/|\\\\./g;s/^/\\\\./g"
\.abc|\.def|\.ghi|\.hjk

Var1=`echo ${Var} | sed -e "s/,/|\\\./g;s/^/\\\./g"`

Actual:
-------
echo $Var1
.abc|.def|.ghi|.jkl


Expected:
---------
echo $Var1
\.abc|\.def|\.ghi|\.hjk

I wanted to get the escape sequence stored in the Var1.

Any help?

Thanks.

What do you mean by "escape sequence"?

You have shown us the output you don't want, but haven't shown us the output you do want.

Just edited the my original post!

$ Var="abc,def,ghi,jkl"
$ echo "\\.${Var//,/\\.}"

\.abc\.def\.ghi\.jkl

$

Thanks Corona!!

It worked by changing from double qoute to single qoute of the sed command.