As a complete beginner, I'm struggling to figure out how to insert a Unicode character into my document. Despite reading various threads on Unicode characters, I find the information overwhelming and I'm getting a headache trying to absorb it all.
<doctype html>
<html>
<head>
<meta name="description" content="description" />
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<meta name="keywords" content="keywords" />
<title>title</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css" />
</head>
<body>
<div id="idtag">
📗
</div>
</body>
</html>
#idtag {
font-family: Tahoma, Helvetica, "Arial Unicode MS", sans-serif;
}
I've been attempting to add U+1F4D7, or something similar to a book symbol, but whenever I view the page, all I see is a blank square. It seems like the symbol may not be available on my PC. Previously, I've used Google Fonts that require Javascript - should I use a similar approach here? How exactly would I go about doing that?