Ember.js - Return unicode character from computed property
问题 I'm trying to return a unicode character from a computed property, but the & keeps getting escaped as & . I've even tried returning a Handlebars SafeString like so: return new Ember.Handlebars.SafeString(""); ...which produces the same results:  How can I get this working? Edit: This is probably related to the fact that I'm using the computed property in the valueBinding of an {{input}} helper. The SafeString method does keep the & from being escaped if I use the value elsewhere. 回答1