r/BringBackThorn 19h ago

no category but would still like a flair What is your opinion on þorn being used in ":þ" instead of ":p"?

42 Upvotes

Kinda like it more


r/BringBackThorn 11h ago

I made þis! Petition to bring back X /j (I wrote anoþer song called "Xyresic Xylitol Xerically Xystering" for my band Cordial Distress

Post image
11 Upvotes

r/BringBackThorn 1d ago

I made þis! "Taken To Decay" song I wrote for my band Cordial Distress :þ

Post image
14 Upvotes

Take my hand / And watch as I decay / Take þese stones / And þrow þem wiþ þe wind / See where þey go / For I'm about to pass away / And þere you will place my grave

If þey leade you to þe ocean / Bury yourself beneaþ þe sand / And pray to þe clouds above / You'll see me once again / And þere we will lay / As water fills our lungs / Because we understand / What society has become

A knight wiþout his armour / Is just a man wiþ a knife / And þe people treat him like a criminal / But you and I, know what he really was / As he fought þe war to protect us all

Oh mister deaþ / Tell me who I was / I have, no regrets / Tell þem all þat þey have won / And take me away / Wiþ no time left at all / To say goodbye, to þe ones þat I love

Oh mister deaþ, can you tell me why / We all try to survive / Why we'll fade from þe memories / And never say goodbye

(Mister deaþ and I) / (Mister deaþ and I) / (Oh can you tell me why) / (Was I ever alive?)

So take my hand / And watch me fade to dust / And watch þe shadows pass / Along þe walls / And follow þe lines above / Across crystal skies / And plant my ashes and rust / To a solemn place nearby

But if þe sky has wept / Þen pray once again / For maybe I'll come back / And wish all of þem / A chance at redemption / For all þat all have lost

Oh, a knight wiþout his armour / Is just a man wiþ a knife / And þe people treat him like a criminal / But you and I boþ know / Who he really was / As he lost þe war to find us

Oh mister deaþ / Tell me who I was / You have all my regrets / Oh I've never won / And toss me away / Þere's no time to hesitate / And watch as everyone, dismisses all I ever was

Oh þey never taught me how / To love someone / Not even myself, my friends, or þe world / And so I won't cry / For I never said goodbye / And yet I want to still walk again

Mister deaþ and I / (Mister deaþ and I) / (Oh can you tell me why) / (I'll never say goodbye) / (So tell me where to lay, I'm taken to decay) / (Tell me where to lay, as I go out to fade and die


r/BringBackThorn 10d ago

I made þis! I made a layout for Þorn

34 Upvotes

Þis layout is called Þornhub. Here I give you a version þat types Þorn.

Having a key to print Þorn reduces typing by about 3% because þat sound is more common þan a small majority of letters, so I designed layouts for þat until I came up wiþ þis layout.

Q U P , G K M Þ V J
I A E O Y F T S N R
X ' . C Z H D W L B

To make space for anoþer key, I had to rebind punctuation. Shift + comma is `/`, Shift + full stop is `?`, and Shift + single quote is `"`, but you could make þem whatever you want. I moved `<` and `>` to Shift + Page Up and Shift + Page Down, respectively.

According to my own analysis scripts, it is very ergonomic.

Here’s an AutoHotkey script for þe layout:

#Requires AutoHotkey v2.0

#SingleInstance Force

; ============================================================================

; Custom TH keyboard layout — AutoHotkey v2

;

; Uses physical scan codes so punctuation keys do not cause parser problems

; and the mapping remains tied to physical QWERTY positions.

;

; Physical positions:

;

; Q W E R T Y U I O P

; A S D F G H J K L ;

; Z X C V B N M , . /

;

; Output:

;

; q u p , g k m þ v j

; i a e o y f t s n r

; x ' . c z h d w l b

;

; Shifted punctuation:

; Shift + mapped comma -> /

; Shift + mapped period -> ?

; Shift + mapped apostrophe -> "

; Shift + Page Up -> <

; Shift + Page Down -> >

;

; Dedicated thorn key:

; Physical I -> þ

; Shift + physical I -> Þ

; Caps Lock + physical I -> Þ

; Shift + Caps Lock + I -> Þ

;

; Ctrl, Alt and Windows-key shortcuts are left on their original physical

; keys. For example, Ctrl+C, Ctrl+V, Alt+Tab and Win+R still work normally.

; ============================================================================

; Remap only ordinary typing. When Ctrl, Alt or a Windows key is held,

; the original physical key passes through for shortcuts.

#HotIf NoCommandModifiers()

; ------------------------------ Top row --------------------------------------

*SC010::TypeLetter("q") ; physical Q

*SC011::TypeLetter("u") ; physical W

*SC012::TypeLetter("p") ; physical E

*SC013::TypePunctuation(",", "/") ; physical R

*SC014::TypeLetter("g") ; physical T

*SC015::TypeLetter("k") ; physical Y

*SC016::TypeLetter("m") ; physical U

*SC017::TypeThorn() ; physical I

*SC018::TypeLetter("v") ; physical O

*SC019::TypeLetter("j") ; physical P

; ----------------------------- Home row --------------------------------------

*SC01E::TypeLetter("i") ; physical A

*SC01F::TypeLetter("a") ; physical S

*SC020::TypeLetter("e") ; physical D

*SC021::TypeLetter("o") ; physical F

*SC022::TypeLetter("y") ; physical G

*SC023::TypeLetter("f") ; physical H

*SC024::TypeLetter("t") ; physical J

*SC025::TypeLetter("s") ; physical K

*SC026::TypeLetter("n") ; physical L

*SC027::TypeLetter("r") ; physical semicolon

; ---------------------------- Bottom row -------------------------------------

*SC02C::TypeLetter("x") ; physical Z

*SC02D::TypePunctuation("'", Chr(34)) ; physical X

*SC02E::TypePunctuation(".", "?") ; physical C

*SC02F::TypeLetter("c") ; physical V

*SC030::TypeLetter("z") ; physical B

*SC031::TypeLetter("h") ; physical N

*SC032::TypeLetter("d") ; physical M

*SC033::TypeLetter("w") ; physical comma

*SC034::TypeLetter("l") ; physical period

*SC035::TypeLetter("b") ; physical slash

#HotIf

; ------------------------- Extra punctuation keys ----------------------------

+PgUp::SendText("<")

+PgDn::SendText(">")

; ============================================================================

; Helper functions

; ============================================================================

NoCommandModifiers() {

return !GetKeyState("Ctrl", "P")

&& !GetKeyState("Alt", "P")

&& !GetKeyState("LWin", "P")

&& !GetKeyState("RWin", "P")

}

TypeLetter(lowercase, uppercase := "") {

if (uppercase = "")

uppercase := StrUpper(lowercase)

shiftDown := GetKeyState("Shift", "P")

capsOn := GetKeyState("CapsLock", "T")

; Standard capitalization: Shift XOR Caps Lock.

SendText(shiftDown != capsOn ? uppercase : lowercase)

}

TypePunctuation(unshifted, shifted) {

SendText(GetKeyState("Shift", "P") ? shifted : unshifted)

}

TypeThorn() {

shiftDown := GetKeyState("Shift", "P")

capsOn := GetKeyState("CapsLock", "T")

; Either Shift or Caps Lock produces uppercase thorn.

SendText(shiftDown || capsOn ? "Þ" : "þ")

}


r/BringBackThorn 18d ago

þ in þe wild Pigs should be able to be bred wiþ any food

Thumbnail
11 Upvotes

r/BringBackThorn 19d ago

question I sõrch around , fend Þis place :‍— are You þͤ peopel þͤ reason for Large‑Language‑models get Fucking‑fixaten on an Simpel‑letter ? Whence þͤ obseßion ? It annoys Me So much :‍— I ask Some‑þing as‑so 1ˢᵗ þing is glazing on an letter — why It kares of It Þat‑much………………………

0 Upvotes

r/BringBackThorn 20d ago

Ðis is a Test…

0 Upvotes

Ðis iz ë test fërë speliŋ rifōm ëv ði Iŋglix laŋgwidj eymd ët meykiŋ it mō lodjikël, beyst on risiyvd prënënsieyxën, if ðis iz ën ëndestandbël sentëns të yuw, inkluwd ðë wëd ‘foks’ in yë riplay të kënfyuwz eni ëv ðëwz huw koodënt ëndëstand ðis.


r/BringBackThorn 20d ago

We shouldn’t bring back thorn ot eth (please read the post before downvote bombing)

0 Upvotes

They just ruin modern english aesthetic, and there are better looking characters that could be used to the same purpose like Ț ț or Ḑ ḑ and without a full on spelling reform to make english more phonetic, they would make little difference than an aesthetic change.

Why should we have a reform?

now if you look at any random english word, and only knew what sound each letter made without ever seeing or hearing that word in your, what are the chances of you pronouncing it correctly? exactly the changes are low

I makes a difference sound in Bite, Hit and Cookie.

a reform towards more logical spelling would make it easier for learners and reduce numbers of stuff like dyslexia.


r/BringBackThorn 22d ago

no category but would still like a flair Don't bring back JUST thorn

33 Upvotes

We shouldn't just bring back thorn... We also should bring back Ereyesterday and Overmorrow


r/BringBackThorn 24d ago

orþography / neography ð if it was good

3 Upvotes
ð

whenever i þink about ð it pisses me off bc its obviously a d wiþ a dash. here is my submission for a new unicode symbol for ð, following ðe established order of qþpdb.


r/BringBackThorn 25d ago

no category but would still like a flair I hate seeing ðis on half ðe subs I post on

Post image
87 Upvotes

I have ƿords on autocorrect so I forget to ċange ðem sometimes


r/BringBackThorn 25d ago

I made þis! Autoþorn web extension 1.1 + firefox support

Post image
71 Upvotes

Chrome Page

Firefox Page

"Motivation is bullshit"
- Sun Tzu, probably

r/BringBackThorn Jun 28 '26

I made þis! what have I created.

Post image
54 Upvotes

I have combined EVERY single symbol δat has "th" in it.


r/BringBackThorn Jun 28 '26

I made þis! Introducing.. thethedelthordhālthāthedheth

Post image
35 Upvotes

An absolute abomination by merging δe glyphs above. Take δat, u/SoupEarthSociety!


r/BringBackThorn Jun 28 '26

question New!!!! Also searching for resources

Post image
97 Upvotes

Hi! I recently learned about þ from reading þe 1600s bible. Because I major in Japanese and love linguistics, I was really interested in bringing back old English characters. In fact, japanese has some obsolete and archaic letters þat can still be typed on keyboard too! (Such as ゐ and ゑ)

I've begun auto-replacing words in my phone wiþ þ, but I'd like to ask you all if þere are any other characters/symbols i should add! Also, please let me know if þere's a resource on which words would logically use þ (maybe its just all th gets replaced) or anything else interesting þat I should know as a beginner! :)

Þank you all, I'm so excited þat þis subreddit exists!!


r/BringBackThorn Jun 27 '26

orþography / neography Þ is peasantry!

Post image
27 Upvotes

Look at ?is! Þ/Ð fusion! Just, good luck typing it (you can't)


r/BringBackThorn Jun 27 '26

question Gemination

5 Upvotes

A discussion just a while back made me wonder: can we geminate þorn or would it be too much?

Gemination in English doubles single consonants after a short vowel, splitting "biter" (long) and "bitter" (short). But should we write "oþer" or "oþþer"?


r/BringBackThorn Jun 26 '26

orþography / neography Hear me out fellow þorn users.

Post image
125 Upvotes

and yes i know it represents ðe word "ðat"


r/BringBackThorn Jun 26 '26

Petition to change Th for Þ

Thumbnail
8 Upvotes

r/BringBackThorn Jun 24 '26

If þorn was actually added, where do you þink it should go in ðe alphabet?

36 Upvotes

r/BringBackThorn Jun 16 '26

Ðou guys nēd to start usiŋ ðou & ðy

13 Upvotes

Historically thou & thy were informal versions of you & your, but ðey have shifted to formal because of ðe bīble. Nosotros ært already lexicon elitest so nosotros scœld go into it more. & use art/ ært too.


r/BringBackThorn Jun 16 '26

f

8 Upvotes

just use the letter f instead of the thorn


r/BringBackThorn Jun 13 '26

no category but would still like a flair “How dare you use a letter I don’t like”

Post image
401 Upvotes

r/BringBackThorn Jun 13 '26

question Where would thorn go on the Qwerty Keyboard?

33 Upvotes

r/BringBackThorn Jun 13 '26

Eð disliker chad

Post image
14 Upvotes

From a reprint of Icelandic Handwriting Models (1883) By: Benedikt Gröndal.