UPDATE: Both ways from Chris and Mark work.
I am using Angular 2. I try to show two continuous spaces between a
and b
in the page. I've tried all of these, but none of them works:
{{text}}
text = "a\00a0\00a0b";
text = `a\00a0\00a0b`;
text = "a b";
text = `a b`;
text = "a b";
text = `a b`;
How can I make it work?