This code results in an **à** character normally: ```html <span class='icon'></span> <style> .icon::before { content: '\e0' } </style> ``` When compiled to a custom element, though, it comes out as **e0** because the `\` character isn't escaped.