Latin Capital Letter Thorn

Þ

Shortcodes

Copy useful codes for latin capital letter thorn symbol Þ to use in websites, apps, blogs, and docs.

Unicode
U+00DE
Alt Code
222
HTML Code
Þ
HTML Entity
Þ
HEX Code
Þ
CSS Code
\00DE
JS/JSON
\u00DE
Unix/C/PHP/JAVA
0xDE
URL-encode
%C3%9E

Customize Latin Capital Letter Thorn

Customize Þ, download it as SVG or PNG, or copy the generated HTML snippet.

Þ
  

How to use Latin Capital Letter Thorn Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Þ</span>
HTML Code:
<span>&#222;</span>
HTML Entity:
<span>&THORN;</span>
HEX Code:
<span>&#x00DE;</span>

Add with CSS

.latin-capital-letter-thorn::before {
  content: '\\00DE';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-thorn').textContent = 'Þ';
copied