Unicode Finder

"Æ" U+00C6(LATIN CAPITAL LETTER AE)

Æ
U+00C6
Block Name
Latin-1 Supplement
Name
LATIN CAPITAL LETTER AE

Programming

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

Web

CSS
\0000C6
HtmlDecimal
Æ
HtmlHexadecimal
Æ
Url
%C3%86

Code

MD5
4f1996ab783f10ea86a63e6174997cb2
Sha1
29c1c2a928c2dca6cdcd90aaaca2fc6635725bb3
Base64
w4Y=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u00C6';
console.log(char);  // Output: Æ

Java:

char c = '\u00C6';
System.out.println(c);  // Output: Æ

JSON:

{"text": "\u00C6"}  // Value: Æ

Python:

char = '\u00C6'
print(char)  # Output: Æ

Perl:

my $char = "\x{00C6}";
print $char;  # Output: Æ

PHP:

$char = "\x{00C6}";
echo $char;  // Output: Æ

Ruby:

char = "\u{00C6}"
puts char  # Output: Æ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#198;</p>  <!-- Display: Æ -->

HTML Hexadecimal:

<p>HTML hex: &#x00C6;</p>  <!-- Display: Æ -->

URL Encoding:

// Æ URL encoding
https://unicodefinder.com/search.php?query=%C3%86

Encodings

MD5:

4f1996ab783f10ea86a63e6174997cb2

SHA1:

29c1c2a928c2dca6cdcd90aaaca2fc6635725bb3

Base64:

w4Y=