Reputation: 18097
If i tyoe correct unicode in html encoded version than it just shows blank or empty box. ⸙
, its the code i want to use. Ive tried setting utf8 and utf 16 in meta tag but it didnt work.
Is there a limit to what characters you cna use in html.
Upvotes: 0
Views: 45
Reputation: 536399
Is there a limit to what characters you cna use in html.
Not intrinsically, but computers don't generally shipped with fonts that have glyphs for every possible character. U+2E19 Palm Branch is a relatively new addition to Unicode (version 5.1) and not many people use it, so font support is not widespread.
If you have a font that includes it, you could embed that using a CSS @font-face
rule to ensure browsers can render it. Otherwise, an image (or SVG) would probably be a simpler way to include the shape.
Upvotes: 2