Back
Asciify Logo
Asciify
ÄÆ

ASCII 197

Uppercase A with ringBox cross junction

ASCII 197 is Å on Windows and ┼ in old DOS.

Å (Capital A with Ring) is byte 197 in Windows-1252, Unicode U+00C5. It starts Scandinavian names like Åsa and Ålesund, and Swedish, Norwegian and Danish all treat it as a letter of its own. It also makes a good test case for clipped text. The ring sits higher than most accents, so a button or input with line-height: 1 and overflow: hidden can slice the top off it, and ÅSA in capitals comes out with its ring cut away. Give such elements a little vertical padding or a line-height above 1. Old DOS had Å too, at 143. Its UTF-8 bytes C3 85 misread as Ã…. The HTML entity is Å.

┼ (Light Vertical and Horizontal) is byte 197 in code page 437, the original IBM PC character set, and maps to Unicode U+253C. It's the cross where four single lines meet, the inner intersections of a table grid. ASCII tables draw every junction as +, which is why converting one to box drawing isn't a simple search and replace. Only the inner junctions become ┼. Along the outer edges the same + has to become a tee (├ ┤ ┬ ┴), and at the corners ┌ ┐ └ ┘, or the frame sprouts little stubs. In UTF-8 it's E2 94 BC, and the HTML entity is ┼.

Latin LetterBox Drawing

Technical Details

Technical Details

Code Example

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

Code Example

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

How to Type It

Windows
Hold Alt and type 0197 on the numeric keypad, with Num Lock on. The leading zero picks the Windows code page. Alt+143, without the zero, types it too. No numeric keypad? In Word, type 00C5 and press Alt+X.
Mac
Press Option+Shift+A.
Linux
In GNOME, or any desktop running IBus, press Ctrl+Shift+U, type c5, then Space. With a Compose key set up, press Compose, o, A.
Phone
Tap Shift, then long-press A and pick Å.

How to Type It

Windows
Hold Alt and type 197 on the numeric keypad, with no leading zero. Windows reads it as a DOS code and inserts ┼. No numeric keypad? In Word, type 253C and press Alt+X.
Mac
Press Control+Command+Space to open the Character Viewer, then search for "box drawings light vertical and horizontal".
Linux
In GNOME, or any desktop running IBus, press Ctrl+Shift+U, type 253c, 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

  • Use the letter Å, U+00C5. The separate ångström sign, U+212B, exists only for compatibility and is canonically equal to the letter, so NFC normalization turns it into U+00C5 anyway. Text that skips normalization treats the two as different, and a search for 1.5 Å won't find the other one.

  • Yes, Aa is the older spelling of Å, which Danish replaced in 1948, and many names kept it, like Aalborg and Aarhus. Danish sorting follows the sound, not the letters, so Aarhus files under Å at the end of the alphabet rather than at the start. Norwegian names like Aasen work the same way.

  • The default collation, utf8mb4_0900_ai_ci, ignores accents, so it compares Å as A and a UNIQUE index sees the two names as equal. In Swedish, Danish and Norwegian, Å is a separate letter, so use a language collation such as utf8mb4_sv_0900_ai_ci, which keeps them apart, or a binary one if every character must count.

  • Either works, as long as you stick to one in a paper. The ångström isn't an SI unit, so some journals ask for nanometres, but crystallography and chemistry still use Å widely because atomic distances come out as tidy numbers like 1.54 Å. In LaTeX, \AA prints the symbol, and the siunitx package has \angstrom for use with numbers.

  • The program writes Windows-1252, where Å is byte 197, to a console reading code page 437 or 850, where 197 is the box-drawing cross ┼. The letter is fine in the program itself. In a C# app, set `Console.OutputEncoding = Encoding.UTF8;` before the first write so the console receives UTF-8 and draws Å properly.

Frequently Asked Questions

  • The program writes Windows-1252, where Å is byte 197, to a console reading code page 437 or 850, where 197 is the box-drawing cross ┼. The letter is fine in the program itself. In a C# app, set `Console.OutputEncoding = Encoding.UTF8;` before the first write so the console receives UTF-8 and draws Å properly.

@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