Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<meta charset="utf-8">
<style>
@font-face {
font-family: test;
/* WhiteOnBlack CFF2 font from https://github.com/adobe-fonts/white-on-black-vf,
licensed under the SIL Open Font License version 1.1 */
src: url(WhiteOnBlack.otf);
}
div {
font: 40px test;
}
</style>
<div>&#x328E;</div>
<canvas id="c"></canvas>
<script>
document.fonts.ready.then(() => {
var ctx = document.getElementById("c").getContext("2d");
ctx.font = "40px test";
ctx.fillText("\u328E", 0, 100);
});
</script>