Lyrics & Knowledge Personal Pages Record Shop Auction Links Radio & Media Kids Membership Help
The Mudcat Cafesj



User Name Thread Name Subject Posted
GUEST,Grishka Origins: Sumer is icumen - doctored by scribe? (27) RE: Origins: Sumer is icumen - doctored by scribe? 01 Nov 25


My statement about "What is Original" was meant as a matter of definition, not of opinion. An elaborately illuminated MS will never contain the first writ of its content (as I pointed out in my second statement), thus it can only lack originality in the sense that it has later been physically meddled with, as the article in the OP suggests, but for which I don't find any corroboration (– not any more than for that magic swastika). If you have any news about that, we'd certainly be interested.

Unicode: either you're interested or you are not. If you are not, that's fine with me; just don't complain.

If you are interested, copy the remaining part of this post to a text file (plain text), save and rename it "UnicodeConverter.html", click, paste your message in Unicode (possibly even including emojis etc.):

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Grishka's Text to HTML Code Converter</title>
    <style>
       body {
            font-family: Arial, sans-serif;
            margin: 20px;
       }
       #output {
            white-space: pre-wrap;
            border: 1px solid #ccc;
            padding: 10px;
            margin-top: 10px;
       }
    </style>
</head>
<body>
    <h1>Grishka's Text to HTML Code Converter</h1>
    <textarea id="input" rows="10" cols="50" placeholder="Paste your text here..."></textarea>
    <div id="output"></div>
    <script>
       document.getElementById('input').addEventListener('input', function() {
            const inputText = this.value;
            let outputText = ';
            for (let i = 0; i < inputText.length; i++) {
                const charCode = inputText.codePointAt(i);
                if (charCode <= 127) {
                   outputText += String.fromCodePoint(charCode);
                } else {
                   outputText += '&#x' + charCode.toString(16) + ';';
                }
                if (charCode > 0xFFFF) {
                   i++; // Skip the next code unit if it's a surrogate pair
                }
            }
            document.getElementById('output').innerText = outputText;
       });
    </script>
</body>


Post to this Thread -

Back to the Main Forum Page

By clicking on the User Name, you will requery the forum for that user. You will see everything that he or she has posted with that Mudcat name.

By clicking on the Thread Name, you will be sent to the Forum on that thread as if you selected it from the main Mudcat Forum page.

By clicking on the Subject, you will also go to the thread as if you selected it from the original Forum page, but also go directly to that particular message.

By clicking on the Date (Posted), you will dig out every message posted that day.

Try it all, you will see.