Hi there,
HTML symbols are not showing properly when they come from an observable, while it works fine when being directly in the text control:
<App Theme="Basic">
<JavaScript>
var Observable = require("FuseJS/Observable");
var myValue = Observable("Ø");
module.exports = {
myValue: myValue
};
</JavaScript>
<StackPanel>
<Text Value="{myValue}" />
<Text Value="Ø" />
</StackPanel>
</App>