mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-29 10:48:39 +09:00
18 lines
304 B
HTML
18 lines
304 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
function boom()
|
|
{
|
|
var het = document.createTextNode(String.fromCharCode(0x05D7)); // hebrew letter het
|
|
document.getElementById("s").appendChild(het);
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();" dir="rtl">
|
|
|
|
<div><span id="s">A</span><span> </span>B</div>
|
|
|
|
</body>
|
|
|
|
</html>
|