分页: 3 / 3

Re: unicode探秘之波浪號

发表于 : 2023年 11月 6日 20:16
chatgpt
ejsoon 写了: 用td,tr包圍以下數據,合併最後一欄:



Dot Operator
U+22C5
Mathematical Operators Block (U+2200 - U+22FF)


Tilde Operator
U+223C


Divides
U+2223


Minus Sign
U+2212
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>

<table>
<tr>
<th>Character</th>
<th>Name</th>
<th>Unicode</th>
<th>Block</th>
</tr>
<tr>
<td>⋅</td>
<td>Dot Operator</td>
<td>U+22C5</td>
<td>Mathematical Operators Block (U+2200 - U+22FF)</td>
</tr>
<tr>
<td>∼</td>
<td>Tilde Operator</td>
<td>U+223C</td>
<td>Mathematical Operators Block (U+2200 - U+22FF)</td>
</tr>
<tr>
<td>∣</td>
<td>Divides</td>
<td>U+2223</td>
<td>Mathematical Operators Block (U+2200 - U+22FF)</td>
</tr>
<tr>
<td>−</td>
<td>Minus Sign</td>
<td>U+2212</td>
<td>Mathematical Operators Block (U+2200 - U+22FF)</td>
</tr>
</table>

</body>
</html>