劉任昌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>

Harvard第八週上課

哈佛大學2024年資訊科學CS課程第八週HTML, CSS, JavaScript. 我拷貝兩則留言觀眾的留言 Learned more in this 1 video than my entire degree at Montana State. Never knew teachers like this existed! 這一小時的課程,勝過我在蒙大拿州立大學取得的碩士課程。我從來沒想過老師可以將課程教得如此精采。 I can't believe that this overwhelming-quality lectures are open to everyone. 我不敢相信如此絕對高品質的授課,竟然開放給每個人觀看。 https://www.youtube.com/watch?v=ciz2UaifaNM

留言

  1. https://takuto20050803.blogspot.com/2024/12/blog-post.html

    回覆刪除

張貼留言

這個網誌中的熱門文章

劉任昌python串列List(陣列Array),元組Tuple,集合Set,字典Dict

2025年3月4日上課Python 陣列array串列的函數(方法)

劉任昌Javascript物件導向Python物件導向