Unicode Finder

"Ä" U+00C4(LATIN CAPITAL LETTER A WITH DIAERESIS)

Ä
U+00C4
Block Name
Latin-1 Supplement
Name
LATIN CAPITAL LETTER A WITH DIAERESIS

Programming

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

Web

CSS
\0000C4
HtmlDecimal
Ä
HtmlHexadecimal
Ä
Url
%C3%84

Code

MD5
b66491b03046f0846fe4206bc6a0f3c0
Sha1
b7cab47d30ea11722e138107aeb709fbf83cf48b
Base64
w4Q=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u00C4';
console.log(char);  // Output: Ä

Java:

char c = '\u00C4';
System.out.println(c);  // Output: Ä

JSON:

{"text": "\u00C4"}  // Value: Ä

Python:

char = '\u00C4'
print(char)  # Output: Ä

Perl:

my $char = "\x{00C4}";
print $char;  # Output: Ä

PHP:

$char = "\x{00C4}";
echo $char;  // Output: Ä

Ruby:

char = "\u{00C4}"
puts char  # Output: Ä

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#196;</p>  <!-- Display: Ä -->

HTML Hexadecimal:

<p>HTML hex: &#x00C4;</p>  <!-- Display: Ä -->

URL Encoding:

// Ä URL encoding
https://unicodefinder.com/search.php?query=%C3%84

Encodings

MD5:

b66491b03046f0846fe4206bc6a0f3c0

SHA1:

b7cab47d30ea11722e138107aeb709fbf83cf48b

Base64:

w4Q=