Latin Small Letter Thorn

þ

Shortcodes

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

Unicode
U+00FE
Alt Code
254
HTML Code
þ
HTML Entity
þ
HEX Code
þ
CSS Code
\00FE
JS/JSON
\u00FE
Unix/C/PHP/JAVA
0xFE
URL-encode
%C3%BE

Customize Latin Small Letter Thorn

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

þ
  

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

Insert in HTML

1. Direct symbol:
<span>þ</span>
HTML Code:
<span>&#254;</span>
HTML Entity:
<span>&thorn;</span>
HEX Code:
<span>&#x00FE;</span>

Add with CSS

.latin-small-letter-thorn::before {
  content: '\\00FE';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-thorn').textContent = 'þ';
copied