Question

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"

Was it helpful?

Solution 2

Use

&Delta;

As in KyΔnsys

Just saw the utf-8 encoding, then

&#916; 

will work

OTHER TIPS

Use &#916; or &Delta;

See fiddle here

Try now ,

<p>Ky&#916;nsys </p>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top