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>&#227;</p>
📋
CSS .selector { content: '\00E3' };
📋
JS var unicodeA = '\u00E3 ';
📋
CPP char unicodeA = ' \u00E3 ';
📋
Java char unicodeA = '\u00E3';
📋
Python unicodeA = '\u00E3'
📋

What is Unicode character ã?

The Unicode character ã U+00E3 is Latin Small Letter A With Tilde in the Latin 1 Supplement block.

What is the uppercase equivalent of the Unicode character ã?

The uppercase equivalent of the Unicode character ã is à (U+00C3).

What does the Unicode character ã represent?

The Unicode character ã represents Latin Small Letter A With Tilde.

What is the Unicode code point for ã?

The Unicode code point for ã is U+00E3.

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 Small 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 Lowercase 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 Lowercase
Word Break MidNumNum
Copied!