Back
Asciify Logo
Asciify
“•

ASCII 148

Right double quoteLowercase o with umlaut

ASCII 148 is ” on Windows and ö in old DOS.

” (Right Double Quote) is byte 148 in Windows-1252, Unicode U+201D. English closes double quotes with it, and Swedish and Finnish use it on both ends: ”Hej”. Its garbled form looks cut off. The UTF-8 bytes are E2 80 9D, and 9D is one of the unassigned slots in Windows-1252 (byte 157), so where the opening quote turns into “, the closing one comes out as †followed by nothing visible, or as â€� in tools that flag bad bytes. It also gets used as an inch mark, as in a 27” monitor. That passes visually, but the proper symbol is the double prime ″ (U+2033), and parsers and spreadsheets expect the plain ASCII quote (0x22). The HTML entity is ”.

ö (Small O with Umlaut) is byte 148 in code page 437, the original IBM PC character set, and maps to Unicode U+00F6. Windows-1252 has the right double quote ” at 148, so German DOS text read as Windows-1252 turns schön into sch”n, and curly quotes printed to a code page 437 console come out as ô and ö. Code page 850 kept ö at 148 too. Capital Ö is 153 in DOS.

PunctuationLatin Letter

Technical Details

Technical Details

Code Example

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

Code Example

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

How to Type It

Windows
Hold Alt and type 0148 on the numeric keypad, with Num Lock on. The leading zero picks the Windows code page. No numeric keypad? In Word, type 201D and press Alt+X.
Mac
Press Option+Shift+[. Option+Shift+G gives ˝ (double acute accent), which looks similar but is a different character.
Linux
In GNOME, or any desktop running IBus, press Ctrl+Shift+U, type 201d, then Space. With a Compose key set up, press Compose, greater-than, quote.
Phone
iPhone: on the 123 keyboard, type " right after a word; Smart Punctuation (on by default) turns it into ”. Android (Gboard): tap the character at the top of this page to copy it.

How to Type It

Windows
Hold Alt and type 148 on the numeric keypad, with no leading zero. Windows reads it as a DOS code and inserts ö.

ö is also ASCII 246 on Windows, which has the full guide.

Frequently Asked Questions

  • In American English, inside: periods and commas always go before the closing quote, as in She called it “done.” British style usually puts them inside only when they belong to the quoted words, so it's She called it ‘done’. with the period outside. Question marks and exclamation points follow the meaning in both styles.

  • The console is reading Windows-1252 text with code page 437 or 850, where byte 147 (“) is ô and byte 148 (”) is ö. The usual source is a batch file saved in Windows-1252 with text pasted in from Word. Retype those quotes as straight " in the script, since ASCII quotes print the same under every code page.

Frequently Asked Questions

  • The console is reading Windows-1252 text with code page 437 or 850, where byte 147 (“) is ô and byte 148 (”) is ö. The usual source is a batch file saved in Windows-1252 with text pasted in from Word. Retype those quotes as straight " in the script, since ASCII quotes print the same under every code page.

@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