Hi @lilactown. There is any good way to add html entities in render https://dev.w3.org/html5/html-author/charref ? For example I need to use  
but I dont have any good idea how I can do it. It would be great to use something like this: ($ "  ")
currently I’m able to do it only via dangerouslySetInnerHTML (d/span {:dangerouslySetInnerHTML #js {:__html " "}})
unfortunately, in React there's not a great way to do this out of the box
you could use escape characters
(d/div "foo bar \u00A0 baz")
=> <div>foo bar baz</div>
you could have some constants that refer to the specific char codes you need.
(def nbsp "\u00A0")
(def middot "\u00B7")
etc.got it, thank you