Back
Asciify Logo
Asciify
Ýß

ASCII 222

Uppercase thornRight half block

ASCII 222 is Þ on Windows and ▐ in old DOS.

Þ (Capital Thorn) is byte 222 in Windows-1252, Unicode U+00DE. Icelandic still writes it for the th sound, as in Þingvellir and the name Þór, which English renders as Thor. Old English used it too, and it explains the ye in names like Ye Olde Tea Shoppe: early printers without a thorn in their type set a y in its place, and ye was read as the. UTF-8 stores Þ as C3 9E, which misreads as Þ. The HTML entity is Þ.

▐ (Right Half Block) is byte 222 in code page 437, the original IBM PC character set, and maps to Unicode U+2590. It fills the right half of a cell, the mirror of ▌ at 221. Unicode is lopsided here: it has left blocks in every eighth from ▏ to ▉, but on the right only this half and the thin ▕ (U+2595). So a bar that grows from right to left can't be drawn in smooth eighths with right blocks alone. One workaround is a left block with its foreground and background colors swapped. There's no named HTML entity, so use ▐. Code page 850 put Ì on this byte. In UTF-8 it's E2 96 90.

Latin LetterBlock Element

Technical Details

Technical Details

Code Example

</>
#include <stdio.h>
int main(void) {
/* On Windows (code page 1252) byte 222 is Þ.
Modern terminals expect UTF-8, so print the code point, not the byte. */
printf("\u00DE\n"); /* UTF-8: C3 9E */
unsigned char b = 222; /* the raw Windows-1252 byte */
printf("%d 0x%02X\n", b, b); /* 222 0xDE */
return 0;
}

Code Example

</>
#include <stdio.h>
int main(void) {
/* Byte 222 is ▐ only on a console using code page 437
(chcp 437 on Windows, or DOSBox). On a UTF-8 terminal the
lone byte 0xDE is invalid and prints as garbage, often �. */
putchar(222);
/* char is signed on x86, so a plain char holding 0xDE is -34.
Use unsigned char when you compare or index by byte value. */
char c = (char)222;
unsigned char u = 222;
printf("\n%d %d\n", c, u); /* -34 222 */
/* Portable: print the Unicode character as UTF-8 instead. */
printf("\u2590\n"); /* E2 96 90 */
return 0;
}

How to Type It

Windows
Hold Alt and type 0222 on the numeric keypad, with Num Lock on. The leading zero picks the Windows code page. No numeric keypad? In Word, type 00DE and press Alt+X.
Mac
Press Control+Command+Space to open the Character Viewer, then search for "latin capital letter thorn".
Linux
In GNOME, or any desktop running IBus, press Ctrl+Shift+U, type de, then Space. With a Compose key set up, press Compose, T, H.
Phone
Add the Icelandic keyboard in your phone's keyboard settings and type Þ there, or tap the character at the top of this page to copy it.

How to Type It

Windows
Hold Alt and type 222 on the numeric keypad, with no leading zero. US PCs insert ▐, but PCs set to code page 850, common in Western Europe, insert Ì. No numeric keypad? In Word, type 2590 and press Alt+X.
Mac
Press Control+Command+Space to open the Character Viewer, then search for "right half block".
Linux
In GNOME, or any desktop running IBus, press Ctrl+Shift+U, type 2590, then Space.
Phone
Phone keyboards have no key for it. Tap the character at the top of this page to copy it.

Frequently Asked Questions

  • The subtitle file is in Windows-1254, the Turkish code page, and the player is reading it as Windows-1252, which has Þ where Turkish has Ş and ý where it has ı. Set the player's subtitle encoding to Turkish, or convert the .srt to UTF-8 once, which players generally read correctly without any setting.

  • The usual slug trick, NFKD normalization and then dropping everything outside ASCII, only works for letters that split into a base letter plus an accent. Þ has no such decomposition, so it gets removed whole. Map it before normalizing, Þ to Th and þ to th, or use a transliteration library such as unidecode, which already turns Þingvellir into Thingvellir.

  • Near the end of the alphabet, after Y and Ý and before Æ and Ö. Sorting by code point gets this wrong, because Þ has a higher value than both Æ and Ö, so Þór lands after Ögmundur. Use Icelandic collation instead, for example `names.sort(new Intl.Collator('is').compare)`, which also puts Ð right after D.

@workani&@alexluthor
Privacy & legal

Privacy

No accounts, no ads, no tracking cookies, and no cross-site tracking. The only analytics we keep are faceless — anonymous, aggregated counts of pages and searches, never tied to you. We store no IP addresses, set no tracking cookies, and build no profiles. Cloudflare hosts the site and handles requests for delivery and security.

Full privacy policy·Extension privacy·legal@asciify.dev

Attributions & licenses

Twemoji
© Twitter, Inc and other contributors · CC-BY 4.0
Noto Color Emoji
© Google · Apache 2.0
Fluent UI Emoji
© Microsoft · MIT
OpenMoji
© HfG Schwäbisch Gmünd · CC-BY-SA 4.0
Toss Face
© Viva Republica (Toss) · SIL OFL 1.1
JoyPixels
© JoyPixels Inc. · Free Limited Use License
SerenityOS Emoji
© The SerenityOS Developers · BSD-2-Clause
EmojiTwo
© EmojiTwo contributors · CC-BY 4.0
Apple Color Emoji
© Apple, Inc.
Facebook Emoji
© Meta Platforms, Inc.

Apple and Facebook emoji styles are proprietary and shown here solely for reference and comparison — a common-sense application of nominative-use / fair-use principles. asciify is not affiliated with, endorsed by, or sponsored by Apple, Inc., Meta Platforms, Inc., or any other rights holder listed above. If a rights holder requests removal of their emoji style from this site, it will be removed.

All other vendor emoji are reproduced for reference and comparison under their respective open licenses listed above.

Character names and code points from the Unicode® Standard. Unicode® and the Unicode Logo are registered trademarks of Unicode, Inc.

Privacy
© asciify.dev 2025-2026