Unicode Finder

"Â" U+00C2(LATIN CAPITAL LETTER A WITH CIRCUMFLEX)

Â
U+00C2
Block Name
Latin-1 Supplement
Name
LATIN CAPITAL LETTER A WITH CIRCUMFLEX

Programming

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

Web

CSS
\0000C2
HtmlDecimal
Â
HtmlHexadecimal
Â
Url
%C3%82

Code

MD5
a0adf5761d7834da1b1902c5a2df4e88
Sha1
299f8e8cfdc17da9ffb794494f5eec814a2c37e4
Base64
w4I=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u00C2';
console.log(char);  // Output: Â

Java:

char c = '\u00C2';
System.out.println(c);  // Output: Â

JSON:

{"text": "\u00C2"}  // Value: Â

Python:

char = '\u00C2'
print(char)  # Output: Â

Perl:

my $char = "\x{00C2}";
print $char;  # Output: Â

PHP:

$char = "\x{00C2}";
echo $char;  // Output: Â

Ruby:

char = "\u{00C2}"
puts char  # Output: Â

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#194;</p>  <!-- Display: Â -->

HTML Hexadecimal:

<p>HTML hex: &#x00C2;</p>  <!-- Display: Â -->

URL Encoding:

// Â URL encoding
https://unicodefinder.com/search.php?query=%C3%82

Encodings

MD5:

a0adf5761d7834da1b1902c5a2df4e88

SHA1:

299f8e8cfdc17da9ffb794494f5eec814a2c37e4

Base64:

w4I=