Unicode Finder

"A" U+0041(LATIN CAPITAL LETTER A)

A
U+0041
Block Name
Basic Latin
Name
LATIN CAPITAL LETTER A

Programming

C
\u0041
JavaScript
\u0041
Java
\u0041
Json
\u0041
Python
\u0041
Perl
\x{0041}
PHP
\x{0041}
Ruby
\u{0041}
Rust
\u{41}
Go
\u0041

Web

CSS
\000041
HtmlDecimal
A
HtmlHexadecimal
A
Url
A

Code

MD5
7fc56270e7a70fa81a5935b72eacbe29
Sha1
6dcd4ce23d88e2ee9568ba546c007c63d9131c1b
Base64
QQ==

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0041';
console.log(char);  // Output: A

Java:

char c = '\u0041';
System.out.println(c);  // Output: A

JSON:

{"text": "\u0041"}  // Value: A

Python:

char = '\u0041'
print(char)  # Output: A

Perl:

my $char = "\x{0041}";
print $char;  # Output: A

PHP:

$char = "\x{0041}";
echo $char;  // Output: A

Ruby:

char = "\u{0041}"
puts char  # Output: A

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000041";  /* Display: A */
}

HTML Decimal:

<p>HTML decimal: &#65;</p>  <!-- Display: A -->

HTML Hexadecimal:

<p>HTML hex: &#x0041;</p>  <!-- Display: A -->

URL Encoding:

// A URL encoding
https://unicodefinder.com/search.php?query=A

Encodings

MD5:

7fc56270e7a70fa81a5935b72eacbe29

SHA1:

6dcd4ce23d88e2ee9568ba546c007c63d9131c1b

Base64:

QQ==