Unicode Finder

"Ȧ" U+0226(LATIN CAPITAL LETTER A WITH DOT ABOVE)

Ȧ
U+0226
Nume Bloc
Latin Extended-B
Nume
LATIN CAPITAL LETTER A WITH DOT ABOVE

Programming

C
\u0226
JavaScript
\u0226
Java
\u0226
Json
\u0226
Python
\u0226
Perl
\x{0226}
PHP
\x{0226}
Ruby
\u{0226}
Rust
\u{226}
Go
\u0226

Web

CSS
\000226
HtmlDecimal
Ȧ
HtmlHexadecimal
Ȧ
Url
%C8%A6

Code

MD5
f776c3f8c4758595cc98e5c9c30defad
Sha1
1e9b7f930c7d7b08c0b4f10277b026ad8373fa5b
Base64
yKY=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0226';
console.log(char);  // Output: Ȧ

Java:

char c = '\u0226';
System.out.println(c);  // Output: Ȧ

JSON:

{"text": "\u0226"}  // Value: Ȧ

Python:

char = '\u0226'
print(char)  # Output: Ȧ

Perl:

my $char = "\x{0226}";
print $char;  # Output: Ȧ

PHP:

$char = "\x{0226}";
echo $char;  // Output: Ȧ

Ruby:

char = "\u{0226}"
puts char  # Output: Ȧ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000226";  /* Display: Ȧ */
}

HTML Decimal:

<p>HTML decimal: &#550;</p>  <!-- Display: Ȧ -->

HTML Hexadecimal:

<p>HTML hex: &#x0226;</p>  <!-- Display: Ȧ -->

URL Encoding:

// Ȧ URL encoding
https://unicodefinder.com/search.php?query=%C8%A6

Encodings

MD5:

f776c3f8c4758595cc98e5c9c30defad

SHA1:

1e9b7f930c7d7b08c0b4f10277b026ad8373fa5b

Base64:

yKY=