Css Styling

Size
Ã
15px
Ã
18px
Ã
21px
Ã
24px
Ã
27px
Ã
30px
Ã
33px
Ã
36px
Ã
42px
Ã
48px
Ã
54px
Ã
60px
Ã
66px
Ã
72px
💡: Some unicode characters will scale differently than others for different font sizes.
Text style
Ã
Bold
Ã
Italic
Ã
Underline
Ã
Strikethrough
Ã
UpperCase
Ã
LowerCase
Ã
Oblique
A Ã
Subscript
A Ã
Superscript
Ã
Shadow
💡: Some CSS style classes won’t work with some Unicode characters.
Font Family
Ã
Arial
Ã
Times New Roman
Ã
Verdana
Ã
Courier New
Ã
Garamond
Ã
Georgia
Ã
Trebuchet MS
Ã
Tahoma
Ã
Brush Script MT
💡: Unicode characters will be rendered differently (styles, embellishments, offset, color, shapes, etc.) in different fonts.
Fore color
Ã
White
Ã
Brown
Ã
Maroon
Ã
Magenta
Ã
Red
Ã
Orange
Ã
Yellow
Ã
Green
Ã
Teal
Ã
Cyan
Ã
Blue
Ã
Violet
Ã
Purple
Ã
Indigo
Ã
Gray
Ã
Black
💡: Some Unicode characters will look the same and not take fore color.
Back color
Ã
White
Ã
Brown
Ã
Maroon
Ã
Magenta
Ã
Red
Ã
Orange
Ã
Yellow
Ã
Green
Ã
Teal
Ã
Cyan
Ã
Blue
Ã
Violet
Ã
Purple
Ã
Indigo
Ã
Gray
Ã
Black
💡: Some Unicode characters might not look as anticipated under different background colors.

Latin 1 Supplement

Code Snippets

Lang Example Copy
HTML <p>&#195;</p>
📋
CSS .selector { content: '\00C3' };
📋
JS var unicodeA = '\u00C3 ';
📋
CPP char unicodeA = ' \u00C3 ';
📋
Java char unicodeA = '\u00C3';
📋
Python unicodeA = '\u00C3'
📋

What is Unicode character Ã?

The Unicode character à U+00C3 is Latin Capital Letter A With Tilde in the Latin 1 Supplement block.

What is the lowercase equivalent of the Unicode character Ã?

The lowercase equivalent of the Unicode character à is ã (U+00E3).

What does the Unicode character à represent?

The Unicode character à represents Latin Capital Letter A With Tilde.

What is the Unicode code point for Ã?

The Unicode code point for à is U+00C3.

Is the appearance of the à character consistent across all platforms?

The appearance of the à character can vary slightly across different platforms and devices due to differences in font and rendering. However, the general design of the Latin Capital Letter A With Tilde remains consistent.

How can I ensure the à character displays correctly on different devices?

Though using Unicode ensures consistent display across devices and platforms. Ensure that the font being used supports the Latin script to correctly render the à character.

In which version was Unicode character à released, and to which block of characters does it belong?

Unicode character à was first introduced in Unicode Version 1.1, and it belongs to the Latin 1 Supplement block of characters.

Unicode Properties

Applicable Properties

Applicable Properties With Values

Age 1.1
Bidi Class Left to Right Letter
Bidi Paired Bracket Type Not a bracket
Block Latin 1 Supplement
Decomposition Type Canonical Decomposition
General Category Uppercase Letter
Hangul Syllable Type Not Applicable
Indic Positional Category Not Applicable
Joining Type Unjoined
Line Break Alphabetic
Numeric Value Not a Number
Script Latin
Sentence Break Uppercase
Word Break MidNumNum
Copied!