Unicode Finder

"À" U+00C0(LATIN CAPITAL LETTER A WITH GRAVE)

À
U+00C0
Block Name
Latin-1 Supplement
Name
LATIN CAPITAL LETTER A WITH GRAVE

Programming

C
\u00C0
JavaScript
\u00C0
Java
\u00C0
Json
\u00C0
Python
\u00C0
Perl
\x{00C0}
PHP
\x{00C0}
Ruby
\u{00C0}
Rust
\u{C0}
Go
\u00C0

Web

CSS
\0000C0
HtmlDecimal
À
HtmlHexadecimal
À
Url
%C3%80

Code

MD5
d7a85d72b605f8d061a5200e12a838c7
Sha1
10738f8f8987750cb2066519caa89b901e1751fe
Base64
w4A=

Usage Examples

Programming Languages

C:

char c = '\u00C0';
printf("%c\n", c);  // Output: À

JavaScript:

const char = '\u00C0';
console.log(char);  // Output: À

Java:

char c = '\u00C0';
System.out.println(c);  // Output: À

JSON:

{"text": "\u00C0"}  // Value: À

Python:

char = '\u00C0'
print(char)  # Output: À

Perl:

my $char = "\x{00C0}";
print $char;  # Output: À

PHP:

$char = "\x{00C0}";
echo $char;  // Output: À

Ruby:

char = "\u{00C0}"
puts char  # Output: À

Rust:

let c = '\u{C0}';
println!("{}", c);  // Output: À

Go:

char := '\u00C0'
fmt.Printf("%c\n", char)  // Output: À

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0000C0";  /* Display: À */
}

HTML Decimal:

<p>HTML decimal: &#192;</p>  <!-- Display: À -->

HTML Hexadecimal:

<p>HTML hex: &#x00C0;</p>  <!-- Display: À -->

URL Encoding:

// À URL encoding
https://unicodefinder.com/search.php?query=%C3%80

Encodings

MD5:

d7a85d72b605f8d061a5200e12a838c7

SHA1:

10738f8f8987750cb2066519caa89b901e1751fe

Base64:

w4A=