劉任昌UNICODE表示全球所有文字的編碼
輸出UNICODE 40845開始
以上程式碼
<style>p{font-size:3em;line-height: 1.2; background-color: purple; color:yellow;}
</style>
<H1>輸出UNICODE 40845開始</H1>
<p id="abc"></p>
<script>
let x = '';
for (let i = 40845; i < 40860; i++)
{
x = x + '&#' + i + ';';
}
for (i = 12353; i < 12400; i++)
{
x = x + '&#' + i + ';';
}
document.getElementById("abc").innerHTML = x;
</script>
https://takuto20050803.blogspot.com/2024/12/blog-post.html
回覆刪除