Unicode Finder

"Ā" U+0100(LATIN CAPITAL LETTER A WITH MACRON)

Ā
U+0100
Block Name
Latin Extended-A
Name
LATIN CAPITAL LETTER A WITH MACRON

Programming

C
\u0100
JavaScript
\u0100
Java
\u0100
Json
\u0100
Python
\u0100
Perl
\x{0100}
PHP
\x{0100}
Ruby
\u{0100}
Rust
\u{100}
Go
\u0100

Web

CSS
\000100
HtmlDecimal
Ā
HtmlHexadecimal
Ā
Url
%C4%80

Code

MD5
99c2cdc511a866f109a87f21f336ed94
Sha1
b4e3ea36e04ede658c463571f2df3a2040bda668
Base64
xIA=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0100';
console.log(char);  // Output: Ā

Java:

char c = '\u0100';
System.out.println(c);  // Output: Ā

JSON:

{"text": "\u0100"}  // Value: Ā

Python:

char = '\u0100'
print(char)  # Output: Ā

Perl:

my $char = "\x{0100}";
print $char;  # Output: Ā

PHP:

$char = "\x{0100}";
echo $char;  // Output: Ā

Ruby:

char = "\u{0100}"
puts char  # Output: Ā

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000100";  /* Display: Ā */
}

HTML Decimal:

<p>HTML decimal: &#256;</p>  <!-- Display: Ā -->

HTML Hexadecimal:

<p>HTML hex: &#x0100;</p>  <!-- Display: Ā -->

URL Encoding:

// Ā URL encoding
https://unicodefinder.com/search.php?query=%C4%80

Encodings

MD5:

99c2cdc511a866f109a87f21f336ed94

SHA1:

b4e3ea36e04ede658c463571f2df3a2040bda668

Base64:

xIA=