This is code I'm using to show my company logo, the problem is the Δ symbol does not reflect in the browser.

strong class="footer-logo">KyΔnsys</strong

I'm using unicode charset="utf-8"

有帮助吗?

解决方案 2

Use

&Delta;

As in KyΔnsys

Just saw the utf-8 encoding, then

&#916; 

will work

其他提示

Use &#916; or &Delta;

See fiddle here

Try now ,

<p>Ky&#916;nsys </p>
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top